mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
229 B
Rust
17 lines
229 B
Rust
//@ 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);
|
|
}
|