You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Case2.java 169B

123456789
  1. interface A<T> {}
  2. class C implements A<String> {}
  3. class D extends C {}
  4. aspect X {
  5. declare parents: D implements A<Number>; // Can't do it, C implements A<String>
  6. }