2023-10-05 01:50:00 +00:00
|
|
|
error[E0277]: expected a `Fn(isize)` closure, found `S`
|
2022-01-19 15:24:49 +00:00
|
|
|
--> $DIR/unboxed-closures-fnmut-as-fn.rs:27:21
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let x = call_it(&S, 22);
|
2023-10-05 01:50:00 +00:00
|
|
|
| ------- ^^ expected an `Fn(isize)` closure, found `S`
|
2021-09-07 11:30:53 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Fn<(isize,)>` is not implemented for `S`
|
2022-03-24 03:57:48 +00:00
|
|
|
= note: `S` implements `FnMut`, but it must implement `Fn`, which is more general
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `call_it`
|
2022-01-19 15:24:49 +00:00
|
|
|
--> $DIR/unboxed-closures-fnmut-as-fn.rs:22:14
|
2021-07-31 16:26:55 +00:00
|
|
|
|
|
|
|
|
LL | fn call_it<F:Fn(isize)->isize>(f: &F, x: isize) -> isize {
|
|
|
|
| ^^^^^^^^^^^^^^^^ required by this bound in `call_it`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|