mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
13 lines
310 B
Rust
13 lines
310 B
Rust
// 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() {}
|