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