rust/tests/compile-fail/validity/invalid_bool.rs

4 lines
125 B
Rust
Raw Normal View History

fn main() {
2020-05-01 03:29:39 -05:00
let _b = unsafe { std::mem::transmute::<u8, bool>(2) }; //~ ERROR encountered 0x02, but expected a boolean
}