2018-08-08 07:28:26 -05:00
|
|
|
error[E0382]: use of moved value: `blk`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/once-cant-call-twice-on-heap.rs:9:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | fn foo<F:FnOnce()>(blk: F) {
|
2019-11-19 18:43:24 -06:00
|
|
|
| -- --- move occurs because `blk` has type `F`, which does not implement the `Copy` trait
|
2019-04-22 02:40:08 -05:00
|
|
|
| |
|
2019-11-19 19:11:55 -06:00
|
|
|
| help: consider further restricting this bound: `F: Copy +`
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | blk();
|
|
|
|
| --- value moved here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | blk();
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^ value used here after move
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|