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.

One.java 205B

1234567891011121314151617
  1. import java.lang.annotation.*;
  2. aspect X {
  3. declare warning: @Anno *: "Nothing should be annotated Anno!";
  4. }
  5. @Anno
  6. class C {
  7. }
  8. class D {
  9. }
  10. @Retention(RetentionPolicy.RUNTIME)
  11. @interface Anno {}