2022-07-23 00:35:35 +03:00
|
|
|
error[E0507]: cannot move out of `f` as enum variant `Foo1` which is behind a shared reference
|
2022-12-08 17:14:56 -08:00
|
|
|
--> $DIR/borrowck-move-error-with-note.rs:13:11
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | match *f {
|
2022-12-08 09:02:54 -08:00
|
|
|
| ^^
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Foo::Foo1(num1,
|
2019-04-22 08:40:08 +01:00
|
|
|
| ---- data moved here
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | num2) => (),
|
2019-04-22 08:40:08 +01:00
|
|
|
| ---- ...and here
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Foo::Foo2(num) => (),
|
2019-04-22 08:40:08 +01:00
|
|
|
| --- ...and here
|
|
|
|
|
|
2019-11-25 12:32:57 -08:00
|
|
|
= note: move occurs because these variables have types that don't implement the `Copy` trait
|
2022-12-09 13:01:41 -08:00
|
|
|
help: consider removing the dereference here
|
|
|
|
|
|
|
|
|
LL - match *f {
|
|
|
|
LL + match f {
|
2022-12-08 09:02:54 -08:00
|
|
|
|
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error[E0509]: cannot move out of type `S`, which implements the `Drop` trait
|
2022-12-08 17:14:56 -08:00
|
|
|
--> $DIR/borrowck-move-error-with-note.rs:30:11
|
2019-04-22 08:40:08 +01:00
|
|
|
|
|
|
|
|
LL | match (S {f: "foo".to_string(), g: "bar".to_string()}) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot move out of here
|
|
|
|
...
|
|
|
|
LL | f: _s,
|
|
|
|
| -- data moved here
|
|
|
|
LL | g: _t
|
|
|
|
| -- ...and here
|
|
|
|
|
|
2019-11-25 12:32:57 -08:00
|
|
|
= note: move occurs because these variables have types that don't implement the `Copy` trait
|
2022-12-08 17:14:56 -08:00
|
|
|
help: consider borrowing the pattern binding
|
|
|
|
|
|
|
|
|
LL | f: ref _s,
|
|
|
|
| +++
|
|
|
|
help: consider borrowing the pattern binding
|
|
|
|
|
|
|
|
|
LL | g: ref _t
|
|
|
|
| +++
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2019-05-05 12:02:32 +01:00
|
|
|
error[E0507]: cannot move out of `a.a` which is behind a shared reference
|
2022-12-08 17:14:56 -08:00
|
|
|
--> $DIR/borrowck-move-error-with-note.rs:48:11
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | match a.a {
|
2022-12-08 09:02:54 -08:00
|
|
|
| ^^^
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | n => {
|
2019-05-05 12:02:32 +01:00
|
|
|
| -
|
|
|
|
| |
|
|
|
|
| data moved here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `n` has type `Box<isize>`, which does not implement the `Copy` trait
|
2022-12-08 09:02:54 -08:00
|
|
|
|
|
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
LL | match &a.a {
|
|
|
|
| +
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0507, E0509.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0507`.
|