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
198 B
Rust
Raw Normal View History

// run-pass
2018-01-16 09:15:41 +00:00
// https://github.com/rust-lang/rust/issues/41898
use std::num::NonZeroU64;
2018-01-16 09:15:41 +00:00
fn main() {
const FOO: NonZeroU64 = unsafe { NonZeroU64::new_unchecked(2) };
2018-01-16 09:15:41 +00:00
if let FOO = FOO {}
}