summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-57198.stderr
blob: dd70b40224ceff239c1daef93682edd6089a262a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
   |
LL |     m::r#for();
   |        ++

error: aborting due to previous error