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

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

14 lines
285 B
Plaintext
Raw Normal View History

error: expected identifier, found keyword `for`
--> $DIR/issue-57198.rs:6:8
|
LL | m::for();
| ^^^ expected identifier, found keyword
|
help: escape `for` to use it as an identifier
2018-12-31 10:41:05 -06:00
|
LL | m::r#for();
| ++
error: aborting due to previous error