aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/decp/Basic2b.aj
blob: 8cfc4978f385d7b82c6a43a93b9bc14857181fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
interface I<T>{ }

public class Basic2b implements I {

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

aspect X{
    declare parents: Basic2b implements I<Integer>; // error
}