rust/tests/compile-fail/invalid_bool.rs
2017-12-05 17:06:03 +01:00

5 lines
163 B
Rust

fn main() {
let b = unsafe { std::mem::transmute::<u8, bool>(2) }; //~ ERROR: invalid boolean value read
if b { unreachable!() } else { unreachable!() }
}