summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR158573/base/A.aj
blob: 748a37ac91ef04375fd07dc10700d62fff64e8e9 (plain)
1
2
3
4
5
6
7
8
public aspect A {
	
	public static int i = 0;
	
	before() : execution(* *.*(..)) {
	}
	
}