summaryrefslogtreecommitdiffstats
path: root/tests/pureJava/circle/Test2CP.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pureJava/circle/Test2CP.java')
-rw-r--r--tests/pureJava/circle/Test2CP.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/pureJava/circle/Test2CP.java b/tests/pureJava/circle/Test2CP.java
new file mode 100644
index 000000000..14b0fc763
--- /dev/null
+++ b/tests/pureJava/circle/Test2CP.java
@@ -0,0 +1,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 {
+ }
+}