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.

OnePrivateAnnotated.java 184B

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