summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/double_check.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-eval/double_check.rs')
-rw-r--r--src/test/ui/consts/const-eval/double_check.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/consts/const-eval/double_check.rs b/src/test/ui/consts/const-eval/double_check.rs
deleted file mode 100644
index 56ca0aa1f..000000000
--- a/src/test/ui/consts/const-eval/double_check.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-// check-pass
-
-enum Foo {
- A = 5,
- B = 42,
-}
-enum Bar {
- C = 42,
- D = 99,
-}
-#[repr(C)]
-union Union {
- foo: &'static Foo,
- bar: &'static Bar,
- u8: &'static u8,
-}
-static BAR: u8 = 42;
-static FOO: (&Foo, &Bar) = unsafe {(
- Union { u8: &BAR }.foo,
- Union { u8: &BAR }.bar,
-)};
-
-static FOO2: (&Foo, &Bar) = unsafe {(std::mem::transmute(&BAR), std::mem::transmute(&BAR))};
-
-fn main() {}