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.

B.java 163B

12345678
  1. package a;
  2. public aspect B {
  3. void around():call(void *(..)){
  4. A a = new A();
  5. a.A.a.x(); // This line raises the NPE
  6. proceed();
  7. }
  8. }