aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr125480/case2/AbstractMethods.aj
blob: 20e8a0315a4f91331bec89acd6bd344bcbb3d3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public abstract aspect AbstractMethods {

	protected abstract pointcut tracingScope ();
	
	before () : tracingScope () {
		test();
                System.out.println("advice running");
	}
	
	protected abstract void test ();
//	protected void test () {}
}