summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/simplify_match.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/simplify_match.rs')
-rw-r--r--src/test/mir-opt/simplify_match.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/mir-opt/simplify_match.rs b/src/test/mir-opt/simplify_match.rs
deleted file mode 100644
index 216203f9f..000000000
--- a/src/test/mir-opt/simplify_match.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-#[inline(never)]
-fn noop() {}
-
-// EMIT_MIR simplify_match.main.ConstProp.diff
-fn main() {
- match { let x = false; x } {
- true => noop(),
- false => {},
- }
-}