mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 01:08:33 +00:00
19 lines
279 B
Rust
19 lines
279 B
Rust
// https://github.com/rust-lang/rust/issues/78192
|
|
//@ run-pass
|
|
|
|
#![allow(unused_assignments)]
|
|
|
|
fn main() {
|
|
let a = 1u32;
|
|
let b = 2u32;
|
|
|
|
let mut c: *const u32 = &a;
|
|
let d: &u32 = &b;
|
|
|
|
let x = unsafe { &*c };
|
|
c = d;
|
|
let z = *x;
|
|
|
|
assert_eq!(1, z);
|
|
}
|