2023-10-05 01:50:00 +00:00
|
|
|
error[E0277]: expected a `Fn(_)` closure, found `impl Fn(((_, _), _))`
|
2020-10-23 17:41:07 +00:00
|
|
|
--> $DIR/issue-59494.rs:21:22
|
|
|
|
|
|
|
|
|
LL | let t8 = t8n(t7, t7p(f, g));
|
2023-10-05 01:50:00 +00:00
|
|
|
| --- ^^^^^^^^^ expected an `Fn(_)` closure, found `impl Fn(((_, _), _))`
|
2021-09-07 11:30:53 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2020-10-23 17:41:07 +00:00
|
|
|
|
|
2021-11-23 18:34:01 +00:00
|
|
|
= help: the trait `Fn<(_,)>` is not implemented for `impl Fn(((_, _), _))`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `t8n`
|
|
|
|
--> $DIR/issue-59494.rs:5:45
|
|
|
|
|
|
|
|
|
LL | fn t8n<A, B, C>(f: impl Fn(A) -> B, g: impl Fn(A) -> C) -> impl Fn(A) -> (B, C)
|
|
|
|
| ^^^^^^^^^^ required by this bound in `t8n`
|
2020-10-23 17:41:07 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|