summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR141556/base/pkg/A.aj
blob: 0978b132d7b6ff8e486f5fcaaa452206f37ddd08 (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);
	}

}