aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr120474/X.aj
blob: 550028016a335440a3abfb42d43efa07ad0f58bf (plain)
1
2
3
4
5
public aspect X {
  before(): execution(* foo(..)) && !within(X) { 
	  System.out.println(thisJoinPoint);
  }
}