blob: 64e3f603e111064d54239640215c02131092c3ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
error[E0382]: use of moved value: `a`
--> $DIR/pin_mut.rs:9:20
|
LL | let a = Pin::new(a);
| - move occurs because `a` has type `Pin<&mut ()>`, which does not implement the `Copy` trait
LL | let _ = method(a);
| - value moved here
LL | let _ = method(a);
| ^ value used here after move
|
note: consider changing this parameter type in function `method` to borrow instead if owning the value isn't necessary
--> $DIR/pin_mut.rs:3:14
|
LL | fn method(a: Pin<&mut ()>) {}
| ------ ^^^^^^^^^^^^ this parameter takes ownership of the value
| |
| in this function
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0382`.
|