summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/remove_zsts_dont_touch_unions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/remove_zsts_dont_touch_unions.rs')
-rw-r--r--src/test/mir-opt/remove_zsts_dont_touch_unions.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/mir-opt/remove_zsts_dont_touch_unions.rs b/src/test/mir-opt/remove_zsts_dont_touch_unions.rs
deleted file mode 100644
index 8b9de9b4d..000000000
--- a/src/test/mir-opt/remove_zsts_dont_touch_unions.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// unit-test: RemoveZsts
-
-// Ensure RemoveZsts doesn't remove ZST assignments to union fields,
-// which causes problems in Miri.
-
-union Foo {
- x: (),
- y: u64,
-}
-
-// EMIT_MIR remove_zsts_dont_touch_unions.get_union.RemoveZsts.after.mir
-fn get_union() -> Foo {
- Foo { x: () }
-}
-
-
-fn main() {
- get_union();
-}