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:
@@ -6,7 +6,7 @@ package test {
|
||||
public open class Usage {
|
||||
public constructor Usage()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public/*package*/ open fun foo(/*0*/ c: (kotlin.MutableCollection<out kotlin.Any?>..kotlin.Collection<kotlin.Any?>?)): kotlin.Unit
|
||||
public/*package*/ open fun foo(/*0*/ c: kotlin.(Mutable)Collection<*>!): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
internal object O : Tr<V<kotlin.Any?>> {
|
||||
internal object O : Tr<V<*>> {
|
||||
private constructor O()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
internal fun test(/*0*/ t: Tr<out kotlin.Any?>): kotlin.Unit
|
||||
internal fun test(/*0*/ t: Tr<*>): kotlin.Unit
|
||||
|
||||
internal trait Tr</*0*/ T> {
|
||||
internal abstract var v: Tr<T>
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
internal fun test(/*0*/ t: Tr<out kotlin.Any?>): kotlin.Unit
|
||||
internal fun test(/*0*/ t: Tr<*>): kotlin.Unit
|
||||
|
||||
internal trait Tr</*0*/ T> {
|
||||
internal abstract var v: T
|
||||
|
||||
Reference in New Issue
Block a user