summary refs log tree commit diff
path: root/src/test/run-fail/adjust_never.rs
blob: 8661a2f80a7ba0a92d6fb58d27024a3cfb222e63 (plain)
1
2
3
4
5
6
7
8
9
10
// Test that a variable of type ! can coerce to another type.

// error-pattern:explicit

#![feature(never_type)]

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