2017-11-08 04:46:44 -05: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/unboxed-closures-infer-fn-once-move-from-projection.rs:14:13
|
2017-11-08 04:46:44 -05:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let c = || drop(y.0);
|
2022-06-27 07:45:35 +02:00
|
|
|
| ^^ --- closure is `FnOnce` because it moves the variable `y` out of its environment
|
|
|
|
| |
|
2017-12-17 22:22:24 -08:00
|
|
|
| this closure implements `FnOnce`, not `Fn`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | foo(c);
|
2022-08-18 12:22:07 +00:00
|
|
|
| --- - the requirement to implement `Fn` derives from here
|
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
|
|
|
|
|
|
|
|
note: required by a bound in `foo`
|
|
|
|
--> $DIR/unboxed-closures-infer-fn-once-move-from-projection.rs:4:14
|
|
|
|
|
|
|
|
|
LL | fn foo<F>(f: F)
|
|
|
|
| --- required by a bound in this
|
|
|
|
LL | where F: Fn()
|
|
|
|
| ^^^^ required by this bound in `foo`
|
2017-11-08 04:46:44 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0525`.
|