summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr149322/Aspect3.aj
blob: c7a2383e89fa72cbded9c401d0ea8c3d42ca528d (plain)
1
2
3
4
5
6
public aspect Aspect3 {

	before () : call(public * Interface.*(..)) {
		System.out.println("Aspect3.before() " + thisJoinPoint.getSignature().getName());
	}
}