summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/block-no-opening-brace.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/parser/block-no-opening-brace.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/parser/block-no-opening-brace.stderr')
-rw-r--r--src/test/ui/parser/block-no-opening-brace.stderr55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/test/ui/parser/block-no-opening-brace.stderr b/src/test/ui/parser/block-no-opening-brace.stderr
new file mode 100644
index 000000000..f232f480c
--- /dev/null
+++ b/src/test/ui/parser/block-no-opening-brace.stderr
@@ -0,0 +1,55 @@
+error: expected `{`, found keyword `let`
+ --> $DIR/block-no-opening-brace.rs:9:9
+ |
+LL | loop
+ | ---- while parsing this `loop` expression
+LL | let x = 0;
+ | ^^^ expected `{`
+ |
+help: try placing this code inside a block
+ |
+LL | { let x = 0; }
+ | + +
+
+error: expected `{`, found keyword `let`
+ --> $DIR/block-no-opening-brace.rs:15:9
+ |
+LL | while true
+ | ----- ---- this `while` condition successfully parsed
+ | |
+ | while parsing the body of this `while` expression
+LL | let x = 0;
+ | ^^^ expected `{`
+ |
+help: try placing this code inside a block
+ |
+LL | { let x = 0; }
+ | + +
+
+error: expected `{`, found keyword `let`
+ --> $DIR/block-no-opening-brace.rs:20:9
+ |
+LL | let x = 0;
+ | ^^^ expected `{`
+ |
+help: try placing this code inside a block
+ |
+LL | { let x = 0; }
+ | + +
+
+error: expected expression, found reserved keyword `try`
+ --> $DIR/block-no-opening-brace.rs:24:5
+ |
+LL | try
+ | ^^^ expected expression
+
+error: expected one of `move`, `|`, or `||`, found keyword `let`
+ --> $DIR/block-no-opening-brace.rs:30:9
+ |
+LL | async
+ | - expected one of `move`, `|`, or `||`
+LL | let x = 0;
+ | ^^^ unexpected token
+
+error: aborting due to 5 previous errors
+