[Test] Reproduce KT-65207

This commit is contained in:
Dmitriy Novozhilov
2024-02-16 09:36:47 +02:00
committed by Space Team
parent be1d8e2894
commit 9302c8c14d
11 changed files with 261 additions and 0 deletions
@@ -0,0 +1,16 @@
abstract class C<R : Any?> : Java1<R>, KotlinInterface<R> {
constructor() /* primary */ {
super/*Java1*/<R>()
/* <init>() */
}
}
interface KotlinInterface<T : Any?> {
abstract fun bar(): ArrayList<Int>
abstract fun foo(): T
}