2017-09-22 13:21:30 +02:00
|
|
|
// This should fail even without validation
|
2018-10-12 10:54:37 +02:00
|
|
|
// compile-flags: -Zmir-emit-validate=0 -Zmiri-disable-validation
|
2017-09-22 13:21:30 +02:00
|
|
|
|
2017-01-12 09:41:36 +01:00
|
|
|
#![feature(never_type)]
|
|
|
|
#![allow(unreachable_code)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let y = &5;
|
|
|
|
let x: ! = unsafe {
|
2018-10-19 11:50:17 +02:00
|
|
|
*(y as *const _ as *const !) //~ ERROR entered unreachable code
|
2017-01-12 09:41:36 +01:00
|
|
|
};
|
|
|
|
f(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn f(x: !) -> ! { x }
|