2019-05-05 06:02:32 -05:00
|
|
|
error[E0507]: cannot move out of `v` in pattern guard
|
2019-07-29 18:25:30 -05:00
|
|
|
--> $DIR/rfc-reject-double-move-across-arms.rs:5:36
|
2018-09-07 10:52:49 -05:00
|
|
|
|
|
|
|
|
LL | VecWrapper::A(v) if { drop(v); false } => 1,
|
2019-05-05 06:02:32 -05:00
|
|
|
| ^ move occurs because `v` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
|
= note: variables bound in patterns cannot be moved from until after the end of the pattern guard
|
2018-09-07 10:52:49 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|