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

9 lines
298 B
Rust
Raw Normal View History

fn main() {
assert!(std::char::from_u32(-1_i32 as u32).is_none());
2018-11-08 01:29:55 -06:00
let _ = match unsafe { std::mem::transmute::<i32, char>(-1) } { //~ ERROR encountered 4294967295, but expected something less or equal to 1114111
'a' => {true},
'b' => {false},
_ => {true},
};
}