aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr194314/ITDOne.java
blob: 2a568ba8a64688aeae870f0c8098cb498a305d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface I {

} 

class C implements I {

  public void m() {
    foo(null,1,null);
    fooStatic(6,1,null);
  }
}

aspect X {
  void around(): call(* foo(..)) {}
  public void I.foo(String s,int i,String[] ss) {}
  void around(): call(* fooStatic(..)) {}
  public static void C.fooStatic(long l,int i,String[] ss) {}
}