We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1usize
0usize
Why use 1usize instead of 0usize there :
#[inline] pub unsafe fn unreachable() -> ! { enum Void {} let x: &Void = mem::transmute(1usize); match *x {} }
If this function should trigger UB?