blob: 59e90c8102f75edf8eae2c3156b40d18aeb56e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: unexpected `==`
--> $DIR/issue-101477-let.rs:4:11
|
LL | let x == 2;
| ^^
|
help: try using `=` instead
|
LL - let x == 2;
LL + let x = 2;
|
error: aborting due to 1 previous error
|