2017-11-08 03:46:44 -06:00
|
|
|
error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnOnce`
|
|
|
|
--> $DIR/unboxed-closures-infer-fn-once-move-from-projection.rs:24:13
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let c = || drop(y.0); //~ ERROR expected a closure that implements the `Fn` trait
|
2017-12-18 00:22:24 -06:00
|
|
|
| ^^^^^^^^-^^^
|
|
|
|
| | |
|
|
|
|
| | closure is `FnOnce` because it moves the variable `y` out of its environment
|
|
|
|
| this closure implements `FnOnce`, not `Fn`
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | foo(c);
|
2017-11-08 03:46:44 -06:00
|
|
|
| --- the requirement to implement `Fn` derives from here
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0525"
|