rust/tests/ui/never_type/cast-never.rs

11 lines
162 B
Rust

// Test that we can explicitly cast ! to another type
//@ check-pass
#![feature(never_type)]
fn main() {
let x: ! = panic!();
let y: u32 = x as u32;
}