mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
504 B
Plaintext
19 lines
504 B
Plaintext
error[E0283]: type annotations needed: cannot satisfy `T: FnMut<(&'a (),)>`
|
|
--> $DIR/issue-85735.rs:7:8
|
|
|
|
|
LL | T: FnMut(&'a ()),
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
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 ()),
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0283`.
|