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.

DeclareInterfaceImplementsInterface.java 162B

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