aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr132080/TestAdvice.aj
blob: f9f6453e48d52b0d3f6c77d8a1bf37a6a2f151f5 (plain)
1
2
3
4
5
public aspect TestAdvice {
	before () : execution(public new()) && within(!TestAdvice) {
		System.out.println("? " + thisJoinPoint.getSignature());
	}
}