]> git.lizzy.rs Git - rust.git/blob - tests/ui/unboxed-closures/unboxed-closures-fnmut-as-fn.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / unboxed-closures / unboxed-closures-fnmut-as-fn.stderr
1 error[E0277]: expected a `Fn<(isize,)>` closure, found `S`
2   --> $DIR/unboxed-closures-fnmut-as-fn.rs:27:21
3    |
4 LL |     let x = call_it(&S, 22);
5    |             ------- ^^ expected an `Fn<(isize,)>` closure, found `S`
6    |             |
7    |             required by a bound introduced by this call
8    |
9    = help: the trait `Fn<(isize,)>` is not implemented for `S`
10    = note: `S` implements `FnMut`, but it must implement `Fn`, which is more general
11 note: required by a bound in `call_it`
12   --> $DIR/unboxed-closures-fnmut-as-fn.rs:22:14
13    |
14 LL | fn call_it<F:Fn(isize)->isize>(f: &F, x: isize) -> isize {
15    |              ^^^^^^^^^^^^^^^^ required by this bound in `call_it`
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.