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

public class Test2CP {
    public static void main(String[] args) {
        new Base();
    }
}


class Base implements Type.Reflexive {
    public interface I {}
}

class Type {
    public interface Reflexive {
    }

    public class Concrete implements Base.I {
    }
}