KT-6698 Bad class file when using a star-projection on a Java's recursive generic parameter
#KT-6698 Fixed
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class C<T : C<T>> {
|
||||
fun foo(c: C<*>) {}
|
||||
}
|
||||
|
||||
open class Super<T>
|
||||
|
||||
class Sub: Super<C<*>>()
|
||||
|
||||
// class: Sub
|
||||
// jvm signature: Sub
|
||||
// generic signature: LSuper<LC<*>;>;Lkotlin/jvm/internal/KObject;
|
||||
Reference in New Issue
Block a user