aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr199130/Simple.java
blob: 1479a620535eb82eda95928cd821dd092e79e506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
interface A {}
abstract aspect Parent< T > {
  public void m(T i) {}
}
abstract aspect Child< V extends A > extends Parent< V > {
  public void n(V i) {}
}

public class Simple {
  public static void main(String []argv) {
  }
}