2018-09-06 08:48:33 -05:00
|
|
|
error[E0382]: use of partially moved value: `maybe`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-53807.rs:4:30
|
2018-09-06 08:48:33 -05:00
|
|
|
|
|
|
|
|
LL | if let Some(thing) = maybe {
|
|
|
|
| ----- ^^^^^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
= note: move occurs because the value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `(maybe as std::prelude::v1::Some).0`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-53807.rs:4:21
|
2018-09-06 08:48:33 -05:00
|
|
|
|
|
|
|
|
LL | if let Some(thing) = maybe {
|
|
|
|
| ^^^^^ value moved here in previous iteration of loop
|
|
|
|
|
|
|
|
|
= note: move occurs because the value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|