1 2 3 4 5 6 7 8
const FOO: *const u32 = { //~ ERROR encountered dangling pointer in final constant let x = 42; &x }; fn main() { let x = FOO; }