about summary refs log tree commit diff
path: root/tests/ui/consts/issue-64506.rs
blob: 8511c1edb302ebc5edfd3b9a689edc4f97bcd045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//@ check-fail

#[derive(Copy, Clone)]
pub struct ChildStdin {
    inner: AnonPipe,
}

#[derive(Copy, Clone)]
enum AnonPipe {}

const FOO: () = {
    union Foo {
        a: ChildStdin,
        b: (),
    }
    let x = unsafe { Foo { b: () }.a };
    //~^ ERROR: value of uninhabited type
    let x = &x.inner;
};

fn main() {}