]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-0107-bind-by-move-pattern-guards/rfc-reject-double-move-in-first-arm.stderr
reduce spans for `unsafe impl` errors
[rust.git] / src / test / ui / rfc-0107-bind-by-move-pattern-guards / rfc-reject-double-move-in-first-arm.stderr
1 error[E0507]: cannot move out of `v` in pattern guard
2   --> $DIR/rfc-reject-double-move-in-first-arm.rs:6:30
3    |
4 LL |         A { a: v } if { drop(v); true } => v,
5    |                              ^ move occurs because `v` has type `Box<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`.