blob: 30974af74248f20eb5e9b7a172ec1440b3a123ac [file] [log] [blame]
error: expected identifier, found keyword `for`
--> $DIR/keyword-for-as-identifier.rs:4:9
|
LL | let for = "foo";
| ^^^ expected identifier, found keyword
|
help: you can escape reserved keywords to use them as identifiers
|
LL | let r#for = "foo";
| ^^^^^
error: aborting due to previous error