aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr171953/test/ExecutionAspect.aj
blob: 1dd0266d8493498b380c555dd4688148e3fdb2fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package test;

public aspect ExecutionAspect {

declare parents: AbstractExecutable implements java.io.Serializable;

	pointcut executions(Executable executable): execution(public void Executable.execute()) && this(executable);
	
	void around(Executable executable): executions(executable) {
		System.err.println(thisJoinPoint);
	}
}