summaryrefslogtreecommitdiffstats
path: root/src/test/ui/never_type/cast-never.rs
blob: 0139ebe4640be6f3d91c0562290813cee17d9bae (plain)
1
2
3
4
5
6
7
8
9
10
// 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;
}