aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/circle/Test1CF.java
blob: b33e9d3d1f740fd3a95e6710b9602106b2b1590a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package circle;

public class Test1CF {}


class Base {
    public interface I extends IBottom {}  //CE cyclic inheritance
}

class Type {
    public interface Reflexive {
    }
}

interface DerivedI extends Base.I, Type.Reflexive {}

interface IBottom extends DerivedI {}