aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tracing/Aspect.aj
blob: 3ecbe827ebdc36f793dbbbfa09ad20ec3f0829cc (plain)
1
2
3
4
5
public aspect Aspect {
	before () : within(HelloWorld) {
		System.err.println(thisJoinPoint);
	}
}