2017-09-22 13:21:30 +02:00
|
|
|
// This should fail even without validation
|
|
|
|
// compile-flags: -Zmir-emit-validate=0
|
|
|
|
|
2017-01-12 09:41:36 +01:00
|
|
|
#![feature(never_type)]
|
|
|
|
#![allow(unreachable_code)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let y = &5;
|
|
|
|
let x: ! = unsafe {
|
2018-07-15 11:21:56 +02:00
|
|
|
*(y as *const _ as *const !) //~ ERROR constant evaluation error
|
2018-05-09 17:45:16 +02:00
|
|
|
//~^ NOTE entered unreachable code
|
2017-01-12 09:41:36 +01:00
|
|
|
};
|
|
|
|
f(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn f(x: !) -> ! { x }
|