21 lines
284 B
Rust
21 lines
284 B
Rust
|
// check-pass
|
||
|
|
||
|
#[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 };
|
||
|
let x = &x.inner;
|
||
|
};
|
||
|
|
||
|
fn main() {}
|