summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR141556/inc2/pkg/A.aj
blob: 0827506678784364398abd7374929f2fd49cfd7f (plain)
1
2
3
4
5
6
7
8
9
10
11
package pkg;

public aspect A {

	pointcut p() : execution(* C.method1());
	 
	before(): p() {
		System.out.println(thisJoinPoint);
	}
	
}