about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/partial_ptr_overwrite.rs
blob: bd97bec0f71a9eb4d5d881bee6a3e3eb84ad2144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test for the behavior described in <https://github.com/rust-lang/rust/issues/87184>.

const PARTIAL_OVERWRITE: () = {
    let mut p = &42;
    unsafe {
        let ptr: *mut _ = &mut p;
        *(ptr as *mut u8) = 123; //~ ERROR unable to overwrite parts of a pointer
    }
    let x = *p;
};

fn main() {}