summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/match-refactor-to-expr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/match-refactor-to-expr.stderr')
-rw-r--r--src/test/ui/parser/match-refactor-to-expr.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/parser/match-refactor-to-expr.stderr b/src/test/ui/parser/match-refactor-to-expr.stderr
deleted file mode 100644
index 851bef8f2..000000000
--- a/src/test/ui/parser/match-refactor-to-expr.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error: expected one of `.`, `?`, `{`, or an operator, found `;`
- --> $DIR/match-refactor-to-expr.rs:8:9
- |
-LL | match
- | -----
- | |
- | while parsing this `match` expression
- | help: try removing this `match`
-LL | Some(4).unwrap_or(5)
- | - expected one of `.`, `?`, `{`, or an operator
-LL |
-LL | ;
- | ^ unexpected token
-
-error: aborting due to previous error
-