aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR134471/inc1/pkg/A.aj
blob: 8f7a46d2767900a03192e5632742c77ee31d75b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
package pkg;

public aspect A {

	pointcut p() : call(* pkg.*.*(..));
	
	before() : p() {
		     
	} 
}