summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR93310_2/inc1/src/pack/C2.aj
blob: f2c4651b0f100b00aa4e09a5083d69aef2eb709f (plain)
1
2
3
4
5
6
7
8
9
10
package pack;

public class C2 {
	
}

aspect Monitor {
	pointcut pc1() : execution(* *.*(..));
    before() : pc1() {}
}