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.

DeclareInterfaceExtendsClass.java 146B

1234567891011
  1. /** @testcase PR853 declare interface extends class CE */
  2. interface I {}
  3. class C {}
  4. aspect A {
  5. declare parents: I extends C; // CE 10
  6. }