8 lines
250 B
Rust
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
|
|
}
|