rust/tests/compile-fail/validity/invalid_char.rs
2020-03-02 13:51:08 +01:00

9 lines
292 B
Rust

fn main() {
assert!(std::char::from_u32(-1_i32 as u32).is_none());
let _val = match unsafe { std::mem::transmute::<i32, char>(-1) } { //~ ERROR encountered 4294967295, but expected a valid unicode codepoint
'a' => {true},
'b' => {false},
_ => {true},
};
}