summaryrefslogtreecommitdiffstats
path: root/tests/bugs/privilegedNPE/B.aj
blob: ae872061d537a9dd58b12a03635cca317de0d92b (plain)
1
2
3
4
5
6
7
8
9
10
11
privileged aspect B {
  void blah(ITD x) { x.returnNothing("y"); }

  public static void main(String[]argv) {
    ITD a = new ITD();
    a.returnNothing("a");
    System.err.println("Call returned OK!");
  }
}