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