aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs187/307147/TestAspect.aj
blob: cf53868e3ce77d998e046920e0b511dee758cbd9 (plain)
1
2
3
4
5
6
7
8
package test;

public aspect TestAspect {
	Object around(): call(* Test.*(..)) {
		System.out.println("Around " + thisJoinPoint.toString());
		return proceed();
	}
}