aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/inlineAround/aspect2/Concrete.java
blob: f065fa9f182e08f25b2b32063de535211a0d7753 (plain)
1
2
3
4
5
6
7
package aspect2;

import aspect1.Base;

aspect Concrete extends Base perthis(where()) {
	protected pointcut where(): call(* *..C.*(..));
}