rust/src/test/ui/use/use-after-move-implicity-coerced-object.stderr

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

24 lines
984 B
Plaintext
Raw Normal View History

error[E0382]: borrow of moved value: `n`
2018-12-25 15:56:47 +00:00
--> $DIR/use-after-move-implicity-coerced-object.rs:28:13
2018-08-08 12:28:26 +00:00
|
LL | let n: Box<_> = Number { n: 42 }.into();
| - move occurs because `n` has type `Box<Number>`, which does not implement the `Copy` trait
LL | let mut l: Box<_> = List { list: Vec::new() }.into();
2018-08-08 12:28:26 +00:00
LL | l.push(n);
| - value moved here
2022-06-08 18:07:59 +00:00
LL |
2018-08-08 12:28:26 +00:00
LL | let x = n.to_string();
2021-09-16 20:01:22 +00:00
| ^^^^^^^^^^^^^ value borrowed here after move
|
2022-11-03 19:26:59 +00:00
note: consider changing this parameter type in method `push` to borrow instead if ownering the value isn't necessary
--> $DIR/use-after-move-implicity-coerced-object.rs:17:27
|
LL | fn push(&mut self, n: Box<dyn ToString + 'static>) {
| ---- ^^^^^^^^^^^^^^^^^^^^^^^^^^^ this type parameter takes ownership of the value
| |
| in this method
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.