rust/tests/ui/issues/issue-77218/issue-77218-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
468 B
Plaintext
Raw Normal View History

error[E0070]: invalid left-hand side of assignment
2021-11-03 02:50:57 -04:00
--> $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 1 previous error
For more information about this error, try `rustc --explain E0070`.