2023-07-03 23:54:49 +08:00
|
|
|
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `t`
|
|
|
|
--> $DIR/issue-89640.rs:2:8
|
|
|
|
|
|
|
|
|
LL | le t x: i32 = 3;
|
|
|
|
| ^ expected one of 8 possible tokens
|
|
|
|
|
|
|
|
|
help: consider removing the space to spell keyword `let`
|
|
|
|
|
|
|
|
|
LL | let x: i32 = 3;
|
|
|
|
| ~~~
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-07-03 23:54:49 +08:00
|
|
|
|