mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-11 06:24:24 +00:00
14 lines
287 B
Plaintext
14 lines
287 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 1 previous error
|
|
|