2022-06-25 10:42:23 -07:00
|
|
|
error[E0283]: type annotations needed: cannot satisfy `T: FnMut<(&'a (),)>`
|
2021-06-17 14:48:19 +02:00
|
|
|
--> $DIR/issue-85735.rs:7:8
|
|
|
|
|
|
|
|
|
LL | T: FnMut(&'a ()),
|
2022-06-25 10:42:23 -07:00
|
|
|
| ^^^^^^^^^^^^^
|
2021-06-10 13:52:00 +02:00
|
|
|
|
|
2022-11-15 23:11:11 +00:00
|
|
|
note: multiple `impl`s or `where` clauses satisfying `T: FnMut<(&'a (),)>` found
|
|
|
|
--> $DIR/issue-85735.rs:7:8
|
|
|
|
|
|
|
|
|
LL | T: FnMut(&'a ()),
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
LL |
|
|
|
|
LL | T: FnMut(&'b ()),
|
|
|
|
| ^^^^^^^^^^^^^
|
2021-06-17 14:48:19 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-06-17 14:48:19 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0283`.
|