aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr158957/Tracing.aj
blob: 5a974ad2e8283f38de5b12e8c09fd4e140a49aef (plain)
1
2
3
4
5
6
public aspect Tracing {
	
	before () : PointcutLibrary.println() {
		System.out.println("? " + thisJoinPointStaticPart.getSignature().getName());
	}
}