aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1924/337/X.aj
blob: 922a6ab6790f1601f0a61bdae7a86c0cc994b77b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public aspect X {
  pointcut p(long l): call(* F.m(..)) && args(l);
  Object around (long id): p(id) { return null; }

  public static void main(String []argv) {
    new F().m(3L);
  }
}

class F {
    public void m(long r) {}
}