summary refs log tree commit diff
path: root/src/test/ui/parser/issue-57198.stderr
blob: 197c4cc967d4da1ea32c3dfa373caf45552cf6af (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: you can escape reserved keywords to use them as identifiers
   |
LL |     m::r#for();
   |        ^^^^^

error: aborting due to previous error