about summary refs log tree commit diff
path: root/src/test/ui/parser/match-arrows-block-then-binop.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/match-arrows-block-then-binop.rs')
-rw-r--r--src/test/ui/parser/match-arrows-block-then-binop.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/ui/parser/match-arrows-block-then-binop.rs b/src/test/ui/parser/match-arrows-block-then-binop.rs
deleted file mode 100644
index 56c917c7462..00000000000
--- a/src/test/ui/parser/match-arrows-block-then-binop.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-fn main() {
-    let _ = match 0 {
-      0 => {
-        0
-      } + 5 //~ ERROR expected pattern, found `+`
-    };
-}