aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr145963/SrcAspect.aj
blob: c10ed26982ceff33cec06ca999ed7bd511211ccd (plain)
1
2
3
4
5
6
7
8
9
10
package pkg;

public aspect SrcAspect {
	
	pointcut p() : execution(* *.*(..)) && !within(pkg.*);
	
	before() : p() {
	}
	
}