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

4 lines
122 B
Rust
Raw Normal View History

fn main() {
2020-02-18 02:32:02 -06:00
let _b = unsafe { std::mem::transmute::<u8, bool>(2) }; //~ ERROR encountered 2, but expected a boolean
}