2017-09-06 01:36:34 -05:00
|
|
|
error[E0382]: use of partially moved value: `maybe`
|
|
|
|
--> $DIR/issue-41962.rs:15:30
|
|
|
|
|
|
|
|
|
15 | if let Some(thing) = maybe {
|
|
|
|
| ----- ^^^^^ value used here after move
|
|
|
|
| |
|
2018-01-02 00:23:13 -06:00
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
= note: move occurs because the value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
2017-09-06 01:36:34 -05:00
|
|
|
|
|
|
|
error[E0382]: use of moved value: `(maybe as std::prelude::v1::Some).0`
|
|
|
|
--> $DIR/issue-41962.rs:15:21
|
|
|
|
|
|
|
|
|
15 | if let Some(thing) = maybe {
|
2018-01-02 00:10:04 -06:00
|
|
|
| ^^^^^ value moved here in previous iteration of loop
|
2018-01-02 00:23:13 -06:00
|
|
|
|
|
|
|
|
= note: move occurs because the value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
2017-09-06 01:36:34 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|