]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-0107-bind-by-move-pattern-guards/rfc-reject-double-move-across-arms.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / rfc-0107-bind-by-move-pattern-guards / rfc-reject-double-move-across-arms.stderr
1 error[E0507]: cannot move out of `v` in pattern guard
2   --> $DIR/rfc-reject-double-move-across-arms.rs:8:36
3    |
4 LL |         VecWrapper::A(v) if { drop(v); false } => 1,
5    |                                    ^ move occurs because `v` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
6    |
7    = note: variables bound in patterns cannot be moved from until after the end of the pattern guard
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0507`.