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

public class Basic2c implements I<Double> {

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

aspect X{
    declare parents: Basic2c implements I; // error
}