blob: ee86a3241e822d54c1d668a7926b0f4eb90f874b [file] [log] [blame]
error: expected `{`, found `=>`
--> $DIR/missing-block-hint.rs:3:18
|
LL | if (foo) => {}
| -- ^^ expected `{`
| |
| this `if` statement has a condition, but no block
error: expected `{`, found `bar`
--> $DIR/missing-block-hint.rs:7:13
|
LL | if (foo)
| -- this `if` statement has a condition, but no block
LL | bar;
| ^^^-
| |
| expected `{`
| help: try placing this code inside a block: `{ bar; }`
error: aborting due to 2 previous errors