aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr154054/changes/MyAspect.20.aj
blob: d2a7a7155fbf098928ba31f42187bed36f7f3837 (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() + 4;
		return w;	
	}

}