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
713 B
Plaintext
Raw Normal View History

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
|
LL | let x = Foo(Box::new(3));
| - 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
| - ^ value borrowed here after move
2018-08-08 12:28:26 +00: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 12:28:26 +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`.