mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
14 lines
285 B
Plaintext
14 lines
285 B
Plaintext
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
|
|
|