aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/InnerInterfaceTypesHelper.java
blob: a660c191b9e4c65e77cc99f6a31fa9a3b9bbe968 (plain)
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(); 
    } 
}