rust/tests/ui/unboxed-closures/unboxed-closures-infer-fn-once-move-from-projection.stderr

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

24 lines
920 B
Plaintext
Raw Normal View History

error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnOnce`
2018-12-25 09:56:47 -06:00
--> $DIR/unboxed-closures-infer-fn-once-move-from-projection.rs:14:13
|
2019-03-09 06:03:44 -06:00
LL | let c = || drop(y.0);
2022-06-27 00:45:35 -05: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);
2022-08-18 07:22:07 -05: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)
2023-02-20 23:21:07 -06:00
| --- required by a bound in this function
2022-08-18 07:22:07 -05:00
LL | where F: Fn()
| ^^^^ required by this bound in `foo`
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0525`.