summaryrefslogtreecommitdiffstats
path: root/src/test/ui/compare-method/traits-misc-mismatch-2.stderr
blob: 36bb764d40eb45fabdd141125b49800bc07f5be0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0276]: impl has stricter requirements than trait
  --> $DIR/traits-misc-mismatch-2.rs:13:18
   |
LL |     fn zip<B, U: Iterator<U>>(self, other: U) -> ZipIterator<Self, U>;
   |     ------------------------------------------------------------------ definition of `zip` from trait
...
LL |     fn zip<B, U: Iterator<B>>(self, other: U) -> ZipIterator<T, U> {
   |                  ^^^^^^^^^^^ impl has extra requirement `U: Iterator<B>`

error: aborting due to previous error

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