summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/while-if-let-without-body.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/while-if-let-without-body.stderr')
-rw-r--r--src/test/ui/parser/while-if-let-without-body.stderr18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/parser/while-if-let-without-body.stderr b/src/test/ui/parser/while-if-let-without-body.stderr
deleted file mode 100644
index 2dac45c11..000000000
--- a/src/test/ui/parser/while-if-let-without-body.stderr
+++ /dev/null
@@ -1,18 +0,0 @@
-error: expected `{`, found `}`
- --> $DIR/while-if-let-without-body.rs:11:1
- |
-LL | while if let Some(thing) = container.get(i) {
- | _____-----_-
- | | |
- | | while parsing the body of this `while` expression
-LL | |
-LL | |
-LL | | println!("{:?}", thing);
-LL | | i += 1;
-LL | | }
- | |_____- this `while` condition successfully parsed
-LL | }
- | ^ expected `{`
-
-error: aborting due to previous error
-