aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr86057.aj
blob: 30861a2622c9468cc9cd336ccf23eaaa5fb9451a (plain)
1
2
3
4
5
6
7
8
9
10
11
abstract aspect Base {
	
	public final pointcut foo() : execution(* *(..));
	
}

aspect Sub extends Base {
	
	public pointcut foo() : execution(* *(..)) && args(String);
	
}