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