2019-08-27 13:04:48 +02:00
|
|
|
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;
|
2019-08-27 13:04:48 +02:00
|
|
|
| ^^^^^^ expected identifier, found reserved keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `become` to use it as an identifier
|
2019-08-27 13:04:48 +02:00
|
|
|
|
|
|
|
|
LL | let r#become = 0;
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|