2021-11-03 02:50:57 -04:00
|
|
|
error[E0070]: invalid left-hand side of assignment
|
2025-07-13 16:56:31 -04:00
|
|
|
--> $DIR/invalid-assignment-in-while-loop-77218.rs:5:19
|
2021-05-06 19:09:35 -07:00
|
|
|
|
|
2021-11-03 02:50:57 -04:00
|
|
|
LL | while Some(0) = value.get(0) {}
|
|
|
|
|
| - ^
|
|
|
|
|
| |
|
|
|
|
|
| cannot assign to this expression
|
2021-05-06 19:09:35 -07:00
|
|
|
|
|
|
|
|
|
help: you might have meant to use pattern destructuring
|
|
|
|
|
|
|
2021-11-03 02:50:57 -04:00
|
|
|
LL | while let Some(0) = value.get(0) {}
|
2021-05-06 19:09:35 -07:00
|
|
|
| +++
|
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-05-06 19:09:35 -07:00
|
|
|
|
2021-11-03 02:50:57 -04:00
|
|
|
For more information about this error, try `rustc --explain E0070`.
|