summaryrefslogtreecommitdiffstats
path: root/src/test/ui/compare-method/reordered-type-param.rs
blob: a858b66d760ea76bd49f18379cef7d0b8a80b0b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Tests that ty params get matched correctly when comparing
// an impl against a trait
//
// cc #26111

trait A {
  fn b<C:Clone,D>(&self, x: C) -> C;
}

struct E {
 f: isize
}

impl A for E {
  // n.b. The error message is awful -- see #3404
  fn b<F:Clone,G>(&self, _x: G) -> G { panic!() } //~ ERROR method `b` has an incompatible type
}

fn main() {}