summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr117296/PropertySupport.java
blob: e37c6e91ece092321cc3cbb3dc060a07cd8bb6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class PropertySupport<T extends PropertySupport<T>> {

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


class Two {
}

aspect X {
  declare parents: Two extends PropertySupport;
}