1 2 3 4 5 6 7 8
/** @testcase PR#685 subaspect method declaration on superaspect inner interface (types) */ aspect ConcreteAspect extends AbstractAspect { /** bug iff method declaration on parent inner interface */ public Object InnerInterface.getThis() { return new Object(); } }