選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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 {}