os-rust/src/test/ui/reserved/reserved-become.stderr

14 lines
353 B
Text
Raw Normal View History

error: expected identifier, found reserved keyword `become`
2018-12-25 08:56:47 -07:00
--> $DIR/reserved-become.rs:2:9
2018-08-08 14:28:26 +02:00
|
LL | let become = 0;
| ^^^^^^ expected identifier, found reserved keyword
|
help: you can escape reserved keywords to use them as identifiers
|
LL | let r#become = 0;
| ~~~~~~~~
2018-08-08 14:28:26 +02:00
error: aborting due to previous error