rust/tests/ui/parser/keyword-return-as-identifie...

14 lines
335 B
Plaintext

error: expected identifier, found keyword `return`
--> $DIR/keyword-return-as-identifier.rs:4:9
|
LL | let return = "foo";
| ^^^^^^ expected identifier, found keyword
|
help: escape `return` to use it as an identifier
|
LL | let r#return = "foo";
| ++
error: aborting due to 1 previous error