aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr157474/AbstractTracing.aj
blob: 1dfd64f574b09d479f4633f9f3cf9d67ef677fa3 (plain)
1
2
3
4
5
6
7
8
public abstract aspect AbstractTracing {
	
	protected abstract pointcut scope ();
	
	before () : execution(public static void main(String[])) && scope() {
		System.out.println("? " + thisJoinPointStaticPart.getSignature().getName());
	}
}