summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-64506.rs
blob: 9275a8a072ddecb68274ef93346854ee23296d6b (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: evaluation of constant value failed
    let x = &x.inner;
};

fn main() {}