rust/tests/ui/once-cant-call-twice-on-hea...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
748 B
Plaintext
Raw Normal View History

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