mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
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() {}
|