mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
5 lines
163 B
Rust
5 lines
163 B
Rust
fn main() {
|
|
let b = unsafe { std::mem::transmute::<u8, bool>(2) };
|
|
if b { unreachable!() } else { unreachable!() } //~ ERROR: invalid boolean value read
|
|
}
|