2018-12-29 18:35:57 -06:00
|
|
|
error: expected identifier, found keyword `for`
|
|
|
|
--> $DIR/issue-57198.rs:6:8
|
|
|
|
|
|
|
|
|
LL | m::for();
|
|
|
|
| ^^^ expected identifier, found keyword
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2022-01-27 16:53:39 -06:00
|
|
|
help: escape `for` to use it as an identifier
|
2018-12-31 10:41:05 -06:00
|
|
|
|
|
|
|
|
LL | m::r#for();
|
2022-01-27 16:53:39 -06:00
|
|
|
| ++
|
2018-12-29 18:35:57 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|