rust/tests/ui/consts/const-eval/double_check.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
409 B
Rust
Raw Normal View History

//@ check-pass
2018-06-04 11:32:06 -05:00
enum Foo {
A = 5,
B = 42,
}
enum Bar {
C = 42,
D = 99,
}
#[repr(C)]
2018-06-04 11:32:06 -05:00
union Union {
foo: &'static Foo,
bar: &'static Bar,
u8: &'static u8,
2018-06-04 11:32:06 -05:00
}
static BAR: u8 = 42;
2018-06-04 11:32:06 -05:00
static FOO: (&Foo, &Bar) = unsafe {(
Union { u8: &BAR }.foo,
Union { u8: &BAR }.bar,
2018-06-04 11:32:06 -05:00
)};
static FOO2: (&Foo, &Bar) = unsafe {(std::mem::transmute(&BAR), std::mem::transmute(&BAR))};
2018-06-04 11:32:06 -05:00
fn main() {}