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