summary refs log tree commit diff
path: root/src/test/ui/consts/const-nonzero.rs
blob: c06ab227f6463c6f5ca163a0aac371cf699683d9 (plain)
1
2
3
4
5
6
7
8
9
// compile-pass

use std::num::NonZeroU8;

const X: NonZeroU8 = unsafe { NonZeroU8::new_unchecked(5) };
const Y: u8 = X.get();

fn main() {
}