aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features1610/makeSJPOptimization/Azpect.aj
blob: d57dc2b078eed76bc0bb43467ee2ef622cce5a05 (plain)
1
2
3
4
5
public aspect Azpect {
	before() : execution(* *(..)) {
		System.out.println(thisJoinPoint.toLongString());
	}
}