summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/static-raw-pointer-interning.rs
blob: cab60c91e165cc469afb01e7dac2cb050211d507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass

static FOO: Foo = Foo {
    field: &42 as *const i32,
};

struct Foo {
    field: *const i32,
}

unsafe impl Sync for Foo {}

fn main() {
    assert_eq!(unsafe { *FOO.field }, 42);
}