mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
249 B
Rust
16 lines
249 B
Rust
#[derive(Copy, Clone)]
|
|
union Foo {
|
|
a: isize,
|
|
b: (),
|
|
}
|
|
|
|
enum Bar {
|
|
Boo = [unsafe { Foo { b: () }.a }; 4][3],
|
|
//~^ ERROR evaluation of constant value failed
|
|
//~| uninitialized
|
|
}
|
|
|
|
fn main() {
|
|
assert_ne!(Bar::Boo as isize, 0);
|
|
}
|