aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/serialVersionUID/PerThisAspect.aj
blob: df31e0253b6811f4d38620fde811dffcb29747c3 (plain)
1
2
3
4
5
6
7
8
9
10
public aspect PerThisAspect perthis(this(Test)) {
	
	pointcut run (Test test) :
		execution(public void run()) && this(test);
		
	before (Test test) : run (test) {
		System.out.println("? PerThisAspect.run() test=" + test + " this=" + this);
	}

}