]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use/use-after-move-implicity-coerced-object.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / use / use-after-move-implicity-coerced-object.stderr
1 error[E0382]: use of moved value: `n`
2   --> $DIR/use-after-move-implicity-coerced-object.rs:38:13
3    |
4 LL |     l.push(n);
5    |            - value moved here
6 LL |     let x = n.to_string();
7    |             ^ value used here after move
8    |
9    = note: move occurs because `n` has type `std::boxed::Box<Number>`, which does not implement the `Copy` trait
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.