blob: 62d9a8b115a19511943fa6cfdb5da979657d5628 [file] [log] [blame]
error[E0382]: borrow of moved value: `*x`
--> $DIR/liveness-use-after-move.rs:16:20
|
LL | let y = x;
| - value moved here
LL | println!("{}", *x); //~ ERROR use of moved value: `*x`
| ^^ value borrowed here after move
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.