41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
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
|
|
|