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.

pr108377.aj 302B

123456789101112131415
  1. public class pr108377 {
  2. public static void main(String[] args) {
  3. System.out.println(new pr108377().foo());
  4. }
  5. }
  6. aspect Aspect1 {
  7. public pr108377 pr108377.a;
  8. public String pr108377.value;
  9. public String pr108377.foo() {
  10. if (a == null) a = this;
  11. return a.value;
  12. }
  13. }