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.

ITDTwo.java 192B

123456789101112131415
  1. interface I {
  2. }
  3. class C implements I {
  4. public void m() {
  5. foo(null,1,null);
  6. }
  7. }
  8. aspect X {
  9. void around(): call(* foo(..)) {}
  10. public void I.foo(String s,int i,String[] ss) {}
  11. }