blob: 59e90c8102f75edf8eae2c3156b40d18aeb56e63 [file] [log] [blame]
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