rust/tests/ui/borrowck/incorrect-use-after-storage-end-78192.rs
2025-08-17 13:01:02 -04:00

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);
}