2019-04-22 02:40:08 -05:00
|
|
|
error[E0382]: borrow of moved value: `x`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-loan-in-overloaded-op.rs:21:20
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2021-08-24 19:39:40 -05:00
|
|
|
LL | let x = Foo(Box::new(3));
|
2019-04-22 02:40:08 -05:00
|
|
|
| - move occurs because `x` has type `Foo`, which does not implement the `Copy` trait
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | let _y = {x} + x.clone(); // the `{x}` forces a move to occur
|
2023-06-22 15:30:23 -05:00
|
|
|
| - ^ value borrowed here after move
|
2018-08-08 07:28:26 -05:00
|
|
|
| |
|
|
|
|
| value moved here
|
2022-11-02 23:22:24 -05:00
|
|
|
|
|
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
|
|
|
|
LL | let _y = {x.clone()} + x.clone(); // the `{x}` forces a move to occur
|
|
|
|
| ++++++++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|