summaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr123901/B.java
blob: df8baf065ada1d3711e0d79d6ae7391821daea60 (plain)
1
2
3
4
5
6
7
8
package a;
public aspect B {
   void around():call(void *(..)){ 
      A a = new A();
      a.A.a.x(); // This line raises the NPE    
      proceed();    
   }
}