summary refs log tree commit diff
path: root/src/test/ui/issue-12127.stderr
blob: afd483823a63055777969309245a057f6ba2373b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0382]: use of moved value: `f`
  --> $DIR/issue-12127.rs:21:9
   |
LL |         f();
   |         - value moved here
LL |         f();
   |         ^ value used here after move
   |
   = note: move occurs because `f` has type `[closure@$DIR/issue-12127.rs:18:24: 18:41 x:std::boxed::Box<isize>]`, which does not implement the `Copy` trait

error: aborting due to previous error

For more information about this error, try `rustc --explain E0382`.