aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr307009/Bug.aj
blob: d7d94d08380e52b5e96ce4df029fa7ef5cf0f415 (plain)
1
2
3
4
5
6
public aspect Bug {
	// works when specifying *.aj *.java, fails when using -sourceroots!
	declare soft : Exception : call(@Ann * *(..));
	// this works in both cases!
	//declare soft : Exception : call(* m2(..));
}