summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/deaggregator_test_enum_2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mir-opt/deaggregator_test_enum_2.rs')
-rw-r--r--tests/mir-opt/deaggregator_test_enum_2.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/mir-opt/deaggregator_test_enum_2.rs b/tests/mir-opt/deaggregator_test_enum_2.rs
deleted file mode 100644
index 955c31732..000000000
--- a/tests/mir-opt/deaggregator_test_enum_2.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// unit-test: Deaggregator
-// Test that deaggregate fires in more than one basic block
-
-enum Foo {
- A(i32),
- B(i32),
-}
-
-// EMIT_MIR deaggregator_test_enum_2.test1.Deaggregator.diff
-fn test1(x: bool, y: i32) -> Foo {
- if x {
- Foo::A(y)
- } else {
- Foo::B(y)
- }
-}
-
-fn main() {
- // Make sure the function actually gets instantiated.
- test1(false, 0);
-}