2017-06-05 11:35:17 +01:00
|
|
|
error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnOnce`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-26046-fn-once.rs:4:19
|
2017-06-05 11:35:17 +01:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let closure = move || {
|
2017-12-17 22:22:24 -08:00
|
|
|
| ^^^^^^^ this closure implements `FnOnce`, not `Fn`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | vec
|
2017-12-17 22:22:24 -08:00
|
|
|
| --- closure is `FnOnce` because it moves the variable `vec` out of its environment
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Box::new(closure)
|
2017-12-17 22:22:24 -08:00
|
|
|
| ----------------- the requirement to implement `Fn` derives from here
|
2022-08-18 12:22:07 +00:00
|
|
|
|
|
|
|
|
= note: required for the cast from `[closure@$DIR/issue-26046-fn-once.rs:4:19: 4:26]` to the object type `dyn Fn() -> Vec<u8>`
|
2017-06-05 11:35:17 +01:00
|
|
|
|
2017-07-02 16:09:09 +03:00
|
|
|
error: aborting due to previous error
|
2017-06-05 11:35:17 +01:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0525`.
|