summary refs log tree commit diff
path: root/tests/ui/consts/dangling_raw_ptr.rs
blob: 0ab3643f1216b422a301dd7b8f2cdf9050b8fd37 (plain)
1
2
3
4
5
6
7
8
const FOO: *const u32 = { //~ ERROR encountered dangling pointer in final value of constant
    let x = 42;
    &x
};

fn main() {
    let x = FOO;
}