blob: d2671abbdea9e2253a2fb3fcb52a444931f6c133 [file] [log] [blame] [edit]
error: unexpected `==`
--> $DIR/issue-101477-let.rs:4:11
|
LL | let x == 2;
| ^^
|
help: try using `=` instead
|
LL | let x = 2;
| ~
error: aborting due to 1 previous error