rust/tests/compile-fail/invalid_bool.rs
2020-03-19 08:25:08 +01:00

8 lines
250 B
Rust

// Validation makes this fail in the wrong place
// compile-flags: -Zmiri-disable-validation
fn main() {
let b = unsafe { std::mem::transmute::<u8, bool>(2) };
let _x = b == true; //~ ERROR interpreting an invalid 8-bit value as a bool: 2
}