2018-08-08 12:28:26 +00:00
|
|
|
error[E0382]: use of moved value: `blk`
|
2022-01-19 15:24:49 +00:00
|
|
|
--> $DIR/once-cant-call-twice-on-heap.rs:8:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | fn foo<F:FnOnce()>(blk: F) {
|
2019-12-26 12:43:33 +00:00
|
|
|
| --- move occurs because `blk` has type `F`, which does not implement the `Copy` trait
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | blk();
|
2020-06-11 17:48:46 +00:00
|
|
|
| ----- `blk` moved due to this call
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | blk();
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^ value used here after move
|
2019-12-26 12:43:33 +00:00
|
|
|
|
|
2024-03-15 18:08:12 +00:00
|
|
|
note: `FnOnce` closures can only be called once
|
|
|
|
--> $DIR/once-cant-call-twice-on-heap.rs:6:10
|
2020-06-11 17:48:46 +00:00
|
|
|
|
|
2024-03-15 18:08:12 +00:00
|
|
|
LL | fn foo<F:FnOnce()>(blk: F) {
|
|
|
|
| ^^^^^^^^ `F` is made to be an `FnOnce` closure here
|
2020-06-11 17:48:46 +00:00
|
|
|
LL | blk();
|
2024-03-15 18:08:12 +00:00
|
|
|
| ----- this value implements `FnOnce`, which causes it to be moved when called
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|