blob: f13324955fab0d7c32696399e26241848a4d51d0 [file] [log] [blame]
error[E0382]: use of moved value: `self`
--> $DIR/use-after-move-self-based-on-type.rs:22: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`.