summaryrefslogtreecommitdiffstats
path: root/src/test/ui/missing/missing-block-hint.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/missing/missing-block-hint.stderr')
-rw-r--r--src/test/ui/missing/missing-block-hint.stderr30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/ui/missing/missing-block-hint.stderr b/src/test/ui/missing/missing-block-hint.stderr
new file mode 100644
index 000000000..16954223a
--- /dev/null
+++ b/src/test/ui/missing/missing-block-hint.stderr
@@ -0,0 +1,30 @@
+error: expected `{`, found `=>`
+ --> $DIR/missing-block-hint.rs:3:18
+ |
+LL | if (foo) => {}
+ | ^^ expected `{`
+ |
+note: the `if` expression is missing a block after this condition
+ --> $DIR/missing-block-hint.rs:3:12
+ |
+LL | if (foo) => {}
+ | ^^^^^
+
+error: expected `{`, found `bar`
+ --> $DIR/missing-block-hint.rs:7:13
+ |
+LL | bar;
+ | ^^^ expected `{`
+ |
+note: the `if` expression is missing a block after this condition
+ --> $DIR/missing-block-hint.rs:6:12
+ |
+LL | if (foo)
+ | ^^^^^
+help: try placing this code inside a block
+ |
+LL | { bar; }
+ | + +
+
+error: aborting due to 2 previous errors
+