aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1611/pr336880/First.java
blob: ad46da0c6f7d9f686307cae3a179ecab983bb3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
interface II {}


aspect X {
  public <XXX extends I1, YYY extends I2> YYY II.foo(XXX r, Class<YYY> ct) {
return null;
  }
}

interface I1 {}
interface I2 {}