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.aj 223B

1234567891011
  1. privileged aspect B {
  2. void blah(ITD x) { x.returnNothing("y"); }
  3. public static void main(String[]argv) {
  4. ITD a = new ITD();
  5. a.returnNothing("a");
  6. System.err.println("Call returned OK!");
  7. }
  8. }