blob: e4d15c8a17dfae0ba01f20432ed9a7028481319b [file] [log] [blame]
// Test that a variable of type ! can coerce to another type.
// check-pass
fn main() {
let x: ! = panic!();
let y: u32 = x;
}