blob: 58c1c18f9a9b0422d24584a1f6da483c6330f2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error[E0070]: invalid left-hand side of assignment
--> $DIR/issue-77218-2.rs:4:19
|
LL | while Some(0) = value.get(0) {
| - ^
| |
| cannot assign to this expression
|
help: you might have meant to use pattern destructuring
|
LL | while let Some(0) = value.get(0) {
| +++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0070`.
|