summaryrefslogtreecommitdiffstats
path: root/tests/bugs/privilegedAccess/b/B_notPrivileged.aj
blob: 9ba5e91429cc5523351e870eef1746983ea668fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package b;

import a.*;

aspect B {
  public void ITD.newFun() {
      returnNothing("a");
  }

  public static void main(String [] argv) {
    new ITD().newFun();
  }
}