summary refs log tree commit diff
path: root/src/test/run-fail/cast-never.rs
blob: 3620ddee47869572206d4e182453c9e1f00104e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Test that we can explicitly cast ! to another type

// error-pattern:explicit

#![feature(never_type)]

fn main() {
    let x: ! = panic!();
    let y: u32 = x as u32;
}