mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
22 lines
336 B
Rust
22 lines
336 B
Rust
// 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() {}
|