org.aspectj/tests/bugs/inlineAround/aspect2/Concrete.java
jhugunin bcdbd68f76 fix and better tests for
Bugzilla Bug 37152  
   java.lang.VerifyError:
2003-05-02 20:36:06 +00:00

7 lines
138 B
Java

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