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_notPrivileged.aj 183B

12345678910111213
  1. package b;
  2. import a.*;
  3. aspect B {
  4. public void ITD.newFun() {
  5. returnNothing("a");
  6. }
  7. public static void main(String [] argv) {
  8. new ITD().newFun();
  9. }
  10. }