aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr132080/TestAroundClosure.aj
blob: b232545762a37032d4e67c4a1563cd3ac7aab98c (plain)
1
2
3
4
5
6
7
public aspect TestAroundClosure {
	void around () : execution(public new()) && within(!TestAroundClosure) {
		System.out.println("> " + thisJoinPoint.getSignature());
		proceed();
		System.out.println("< " + thisJoinPoint.getSignature());
	}
}