summaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr125295/pkg/A.aj
blob: 53aa6bc99f846b866d5b54cc09e0ae6c95d1c094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package pkg;

import org.aspectj.lang.JoinPoint;

public aspect A {

	pointcut p() : within(C) && execution(* *(..));
	
	before() : p() {
	}
	
	after(): execution(void printParameters(..)) {
	}
	
	static private void printParameters(JoinPoint jp) {
	}
	
}