summaryrefslogtreecommitdiffstats
path: root/tests/features167/overweaving/callsTJP/B.aj
blob: 6c985367be5220393919f83635345ca36802697b (plain)
1
2
3
4
public aspect B {
  declare precedence: B,*;
  before(): !cflow(adviceexecution()) && call(* *(..)) {System.out.println("B:"+thisJoinPoint);}
}