rust/tests/ui/parser/keyword-move-as-identifier....

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

14 lines
323 B
Plaintext
Raw Normal View History

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