mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
14 lines
481 B
Plaintext
14 lines
481 B
Plaintext
|
error[E0382]: use of moved value: `*self.x`
|
||
|
--> $DIR/use-after-move-self.rs:20:16
|
||
|
|
|
||
|
LL | self.bar();
|
||
|
| ---- value moved here
|
||
|
LL | return *self.x; //~ ERROR use of moved value: `*self.x`
|
||
|
| ^^^^^^^ value used here after move
|
||
|
|
|
||
|
= note: move occurs because `self` has type `S`, which does not implement the `Copy` trait
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0382`.
|