summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/partial_ptr_overwrite.rs
blob: 07bca7d64ff69356600427380426f3b5f98e3bd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Test for the behavior described in <https://github.com/rust-lang/rust/issues/87184>.
#![feature(const_mut_refs)]

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

fn main() {}