aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR134541/inc1/A.aj
blob: 0138161f04e00571bb634c22b9055327137910e8 (plain)
1
2
3
4
5
6
7
8
9
10
public aspect A {
	
	pointcut p() : execution(* *.*(..));
	
	
	
	before() : p() {
	}
	
}