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

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