about summary refs log tree commit diff
path: root/src/tools/miri/tests/fail/dangling_pointers/wild_pointer_deref.rs
blob: 9ffc681465504cc4b0891702e8c40cacb0659691 (plain)
1
2
3
4
5
6
7
//@compile-flags: -Zmiri-permissive-provenance

fn main() {
    let p = 44 as *const i32;
    let x = unsafe { *p }; //~ ERROR: is a dangling pointer
    panic!("this should never print: {}", x);
}