aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/pos/i851.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/pos/i851.java b/tests/pos/i851.java
new file mode 100644
index 000000000..39e0bf350
--- /dev/null
+++ b/tests/pos/i851.java
@@ -0,0 +1,8 @@
+interface I<T> {}
+
+interface J<T> extends I<T> {
+ default void $init$() {
+ };
+}
+
+class C<T> extends J<T> {} \ No newline at end of file