summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/match-block-expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/match-block-expr.rs')
-rw-r--r--src/test/pretty/match-block-expr.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/pretty/match-block-expr.rs b/src/test/pretty/match-block-expr.rs
deleted file mode 100644
index 10903e928..000000000
--- a/src/test/pretty/match-block-expr.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-// pp-exact
-
-fn main() {
- let x = match { 5 } { 1 => 5, 2 => 6, _ => 7, };
- assert_eq!(x, 7);
-}