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.

Bug.java 164B

12345678910111213
  1. interface A<T> {}
  2. interface B<T> extends A<T> {}
  3. class C implements A<String> {
  4. }
  5. class D extends C {
  6. }
  7. aspect X {
  8. declare parents: D implements B<Number>;
  9. }