summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr154054/src/MyAspect.aj
blob: 4aa4e973499c78111ce85e78e154f17a1216e034 (plain)
1
2
3
4
5
6
7
8
9
10
public aspect MyAspect {

	pointcut mypointcut(): execution(* getX()) && !within(MyAspect);

	int around(): mypointcut() {
		int w = proceed() + 3;
		return w;	
	}

}