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.

ITDOne.java 321B

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