2021-07-31 04:52:59 -05:00
|
|
|
// Test for the behavior described in <https://github.com/rust-lang/rust/issues/87184>.
|
2021-10-05 03:55:57 -05:00
|
|
|
#![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() {}
|