summaryrefslogtreecommitdiffstats
path: root/tests/new/pr626/b/Foo.java
blob: 3b40c6c74707c0c55396e011fa429fb033f6ae1d (plain)
1
2
3
4
5
6
7
8
9
10
11
package b;

import a.Outer;

/** @testcase PR#626 declared parent not defined in scope of target class declaration (CE in -usejavac only) */
public interface Foo {
    public static aspect Specific extends Outer {
        declare parents: Foo extends Inner;
    }
}