rust/tests/ui/issues/issue-77218/issue-77218.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

17 lines
468 B
Plaintext

error[E0070]: invalid left-hand side of assignment
--> $DIR/issue-77218.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`.