2018-08-08 07:28:26 -05:00
|
|
|
error[E0382]: use of moved value: `blk`
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/once-cant-call-twice-on-heap.rs:8: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-12-26 06:43:33 -06:00
|
|
|
| --- move occurs because `blk` has type `F`, which does not implement the `Copy` trait
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | blk();
|
2020-06-11 12:48:46 -05:00
|
|
|
| ----- `blk` moved due to this call
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | blk();
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^ value used here after move
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2020-06-11 12:48:46 -05:00
|
|
|
note: this value implements `FnOnce`, which causes it to be moved when called
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/once-cant-call-twice-on-heap.rs:7:5
|
2020-06-11 12:48:46 -05:00
|
|
|
|
|
|
|
|
LL | blk();
|
|
|
|
| ^^^
|
2020-03-13 21:28:14 -05:00
|
|
|
help: consider further restricting this bound
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2020-03-13 21:28:14 -05:00
|
|
|
LL | fn foo<F:FnOnce() + Copy>(blk: F) {
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|