rust/tests/ui/borrowck/borrowck-loan-in-overloaded-op.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
719 B
Plaintext
Raw Normal View History

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
|
LL | let x = Foo(Box::new(3));
| - 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
2021-09-16 15:01:22 -05:00
| - ^^^^^^^^^ value borrowed here after move
2018-08-08 07:28:26 -05:00
| |
| value moved here
|
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`.