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.

Two.aj 167B

12345678910
  1. import java.lang.annotation.*;
  2. public aspect Two {
  3. declare parents: @Foo * implements II;
  4. }
  5. interface II {}
  6. @Retention(RetentionPolicy.RUNTIME)
  7. @interface Foo {}