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.

OneDeclareAt.java 208B

12345678910111213
  1. import java.lang.annotation.*;
  2. public class OneDeclareAt {
  3. }
  4. aspect X {
  5. declare @field: int OneDeclareAt.x: @Anno;
  6. private int OneDeclareAt.x;
  7. }
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @interface Anno {}