2022-09-07 12:26:50 +08:00
|
|
|
error: unexpected `==`
|
|
|
|
|
--> $DIR/issue-101477-let.rs:4:11
|
|
|
|
|
|
|
|
|
|
|
LL | let x == 2;
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
|
|
help: try using `=` instead
|
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - let x == 2;
|
|
|
|
|
LL + let x = 2;
|
|
|
|
|
|
|
2022-09-07 12:26:50 +08:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-07 12:26:50 +08:00
|
|
|
|