fn main() { let p = 44 as *const i32; let x = unsafe { *p }; //~ ERROR constant evaluation error [E0080] //~^ NOTE a memory access tried to interpret some bytes as a pointer panic!("this should never print: {}", x); }