os-rust/src/test/ui/issues/issue-12127.stderr

14 lines
452 B
Text
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0382]: use of moved value: `f`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-12127.rs:11:9
2018-07-15 14:11:54 -07:00
|
LL | f();
| - value moved here
2018-07-15 14:11:54 -07:00
LL | f();
| ^ value used here after move
|
2018-12-25 08:56:47 -07:00
= note: move occurs because `f` has type `[closure@$DIR/issue-12127.rs:8:24: 8:41 x:std::boxed::Box<isize>]`, which does not implement the `Copy` trait
2018-07-15 14:11:54 -07:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.