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.

PR64069.aj 596B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. aspect Aspect {
  2. public A.new() { // CE L5
  3. super();
  4. System.out.println("ITD A()");
  5. }
  6. public void A.bar() { // CE L10
  7. System.out.println("ITD bar");
  8. }
  9. public int A.x; // CE L14
  10. }
  11. class A {
  12. void foo() {
  13. A a = new A();
  14. bar();
  15. }
  16. private int x;
  17. private A() {
  18. super();
  19. System.out.println("private A()");
  20. }
  21. private void bar() {
  22. System.out.println("private bar");
  23. }
  24. }
  25. public class PR64069 {
  26. static public void main(String[] args) {
  27. new A().foo();
  28. }
  29. }