summary refs log tree commit diff
path: root/src/test/ui/compare-method/traits-misc-mismatch-2.stderr
blob: 622e144c53a040447103654b7fb552c79d68c5b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0276]: impl has stricter requirements than trait
  --> $DIR/traits-misc-mismatch-2.rs:23:5
   |
19 |       fn zip<B, U: Iterator<U>>(self, other: U) -> ZipIterator<Self, U>;
   |       ------------------------------------------------------------------ definition of `zip` from trait
...
23 | /     fn zip<B, U: Iterator<B>>(self, other: U) -> ZipIterator<T, U> {
24 | |     //~^ ERROR E0276
25 | |         ZipIterator{a: self, b: other}
26 | |     }
   | |_____^ impl has extra requirement `U: Iterator<B>`

error: aborting due to previous error