about summary refs log tree commit diff
path: root/tests/ui/borrowck/incorrect-use-after-storage-end-78192.rs
blob: 99a1d37eb4de741fb4ccc6038bb850c31b724091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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);
}