blob: 3252cd6bba4f198e9369c404896957f8c6d1592f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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;
| ~~~
error: aborting due to 1 previous error
|