2023-07-03 10:54:49 -05: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 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-07-03 10:54:49 -05:00
|
|
|
|