mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
12 lines
226 B
Rust
12 lines
226 B
Rust
//@ run-pass
|
|
//
|
|
// https://github.com/rust-lang/rust/issues/41898
|
|
#![feature(generic_nonzero)]
|
|
|
|
use std::num::NonZero;
|
|
|
|
fn main() {
|
|
const FOO: NonZero<u64> = unsafe { NonZero::new_unchecked(2) };
|
|
if let FOO = FOO {}
|
|
}
|