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

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


class Base implements Type.Reflexive {
}

class Type {
    public interface Reflexive {
    }

    public class Concrete extends Base {
    }
}