aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr145963/AspectInDefaultPackage.aj
blob: 88d2e00a83a4f4bec6be9ae5737dacb78fd8039a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public aspect AspectInDefaultPackage {

	public pointcut execM1() : execution(* pack.C.method1(..));
	public pointcut execM2() : execution(* pack.C.method2(..));
	
	before() : execM1() && this(pack.C) {		
	}
	
	before() : execM2() || execM1() {
	}
	
	before() : execution(* pack.C.method1()) {
	}

	
	
}