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