rust/tests/ui/parser/issues/issue-51602.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
318 B
Plaintext
Raw Normal View History

error: expected `{`, found keyword `in`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-51602.rs:2:10
2018-08-14 19:05:27 +00:00
|
LL | if i in 1..10 {
| ^^ expected `{`
|
note: the `if` expression is missing a block after this condition
--> $DIR/issue-51602.rs:2:8
|
LL | if i in 1..10 {
| ^
2018-08-14 19:05:27 +00:00
error: aborting due to 1 previous error
2018-08-14 19:05:27 +00:00