rust/tests/ui/consts/const-eval/partial_ptr_overwrite.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
360 B
Rust
Raw Normal View History

2021-07-31 04:52:59 -05:00
// Test for the behavior described in <https://github.com/rust-lang/rust/issues/87184>.
#![feature(const_mut_refs)]
2021-07-31 04:52:59 -05:00
const PARTIAL_OVERWRITE: () = {
let mut p = &42;
unsafe {
let ptr: *mut _ = &mut p;
2022-09-21 06:05:20 -05:00
*(ptr as *mut u8) = 123; //~ ERROR constant
2021-07-31 04:52:59 -05:00
//~| unable to overwrite parts of a pointer
}
let x = *p;
};
fn main() {}