summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/issue-85735.stderr
blob: 0980c5c33bdb4c53ed667dba0e2f186c1677ad97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 1 previous error

For more information about this error, try `rustc --explain E0283`.