2020-02-28 21:56:37 -06:00
|
|
|
error[E0382]: use of moved value: `m`
|
|
|
|
--> $DIR/issue-53114-borrow-checks.rs:22:11
|
|
|
|
|
|
|
|
|
LL | let m = M;
|
|
|
|
| - move occurs because `m` has type `M`, which does not implement the `Copy` trait
|
|
|
|
LL | drop(m);
|
|
|
|
| - value moved here
|
|
|
|
LL | match m { _ => { } } // #53114: should eventually be accepted too
|
|
|
|
| ^ value used here after move
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `mm`
|
|
|
|
--> $DIR/issue-53114-borrow-checks.rs:27:11
|
|
|
|
|
|
|
|
|
LL | match mm { (_x, _) => { } }
|
|
|
|
| -- value moved here
|
|
|
|
LL | match mm { (_, _y) => { } }
|
|
|
|
| ^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `mm.0` has type `M`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `mm`
|
|
|
|
--> $DIR/issue-53114-borrow-checks.rs:29:11
|
|
|
|
|
|
|
|
|
LL | match mm { (_, _y) => { } }
|
|
|
|
| -- value moved here
|
|
|
|
LL |
|
|
|
|
LL | match mm { (_, _) => { } }
|
|
|
|
| ^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `mm.1` has type `M`, which does not implement the `Copy` trait
|
|
|
|
|
2020-03-05 13:06:40 -06:00
|
|
|
error[E0382]: use of moved value: `m`
|
|
|
|
--> $DIR/issue-53114-borrow-checks.rs:36:16
|
|
|
|
|
|
2020-04-10 11:22:24 -05:00
|
|
|
LL | let m = M;
|
2020-03-05 13:06:40 -06:00
|
|
|
| - move occurs because `m` has type `M`, which does not implement the `Copy` trait
|
2020-04-10 11:22:24 -05:00
|
|
|
LL | drop(m);
|
2020-03-05 13:06:40 -06:00
|
|
|
| - value moved here
|
2020-04-10 11:22:24 -05:00
|
|
|
LL | if let _ = m { } // #53114: should eventually be accepted too
|
2020-03-05 13:06:40 -06:00
|
|
|
| ^ value used here after move
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `mm`
|
|
|
|
--> $DIR/issue-53114-borrow-checks.rs:41:22
|
|
|
|
|
|
2020-04-10 11:22:24 -05:00
|
|
|
LL | if let (_x, _) = mm { }
|
2020-03-05 13:06:40 -06:00
|
|
|
| -- value moved here
|
2020-04-10 11:22:24 -05:00
|
|
|
LL | if let (_, _y) = mm { }
|
2020-03-05 13:06:40 -06:00
|
|
|
| ^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `mm.0` has type `M`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `mm`
|
|
|
|
--> $DIR/issue-53114-borrow-checks.rs:43:21
|
|
|
|
|
|
2020-04-10 11:22:24 -05:00
|
|
|
LL | if let (_, _y) = mm { }
|
2020-03-05 13:06:40 -06:00
|
|
|
| -- value moved here
|
2020-04-10 11:22:24 -05:00
|
|
|
LL |
|
|
|
|
LL | if let (_, _) = mm { }
|
2020-03-05 13:06:40 -06:00
|
|
|
| ^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `mm.1` has type `M`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2020-02-28 21:56:37 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|