6 lines
193 B
Rust
6 lines
193 B
Rust
fn main() {
|
|
let x: i32 = unsafe { *std::ptr::null() }; //~ ERROR constant evaluation error [E0080]
|
|
//~^ NOTE invalid use of NULL pointer
|
|
panic!("this should never print: {}", x);
|
|
}
|