aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr154054_2/changes/MyAspect.30.aj
blob: f6d91ec38338344301eb420e30d5efd42779f092 (plain)
1
2
3
4
5
6
7
8
9
10
public aspect MyAspect {

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

	String around(): mypointcut() {
		String w = proceed() + " and Harry";
		return w;	
	}

}