rust/src/test/ui/expr/if/if-without-block.stderr

14 lines
293 B
Text
Raw Normal View History

error: expected `{`, found `}`
2018-12-25 08:56:47 -07:00
--> $DIR/if-without-block.rs:7:1
|
2018-02-28 10:56:07 -08:00
LL | if 5 == {
2019-12-06 23:23:30 +01:00
| -- this `if` expression has a condition, but no block
...
2018-02-28 10:56:07 -08:00
LL | }
| ^ expected `{`
|
= help: maybe you forgot the right operand of the condition?
error: aborting due to previous error