rust/tests/ui/parser/keyword-let-as-identifier.s...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
315 B
Plaintext
Raw Normal View History

error: expected identifier, found keyword `let`
--> $DIR/keyword-let-as-identifier.rs:4:9
2018-10-21 04:36:17 +08:00
|
2019-03-09 20:03:44 +08:00
LL | let let = "foo";
| ^^^ expected identifier, found keyword
|
help: escape `let` to use it as an identifier
|
LL | let r#let = "foo";
| ++
2018-10-21 04:36:17 +08:00
error: aborting due to previous error