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