aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR154054/inc1/A.aj
blob: d892f26d70658e1aaa3e6bc36df853c88f05c4e3 (plain)
1
2
3
4
public aspect A {
	before(): execution(* *(..)) { System.out.println("def");}
	void around(): execution(* *(..)) { proceed();}
}