aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/decp/Basic2d.aj
blob: d4e6305b59f8281d3ddc1a46ae8b4193dfc1c16a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// OK - since new parent matches
interface I<T>{ }

public class Basic2d implements I<Double> {

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

aspect X{
    declare parents: Basic2d implements I<Double>;
}