rust/tests/ui/consts/tuple-struct-constructors.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
197 B
Rust
Raw Normal View History

//@ run-pass
2024-02-22 13:59:52 +00:00
//
2018-01-16 09:15:41 +00:00
// https://github.com/rust-lang/rust/issues/41898
2024-02-22 13:59:52 +00:00
use std::num::NonZero;
2018-01-16 09:15:41 +00:00
fn main() {
2024-02-22 13:59:52 +00:00
const FOO: NonZero<u64> = unsafe { NonZero::new_unchecked(2) };
2018-01-16 09:15:41 +00:00
if let FOO = FOO {}
}