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