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

public aspect A {

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