KT-6751 References to type arguments of a type argument not resolved when wrong number of them
#KT-6751 Fixed
This commit is contained in:
+3
-3
@@ -12,7 +12,7 @@ package p {
|
||||
|
||||
public final class M1 {
|
||||
public constructor M1()
|
||||
public final val a: [ERROR : A<Int>]
|
||||
public final val a: [ERROR : A]<kotlin.Int>
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
@@ -24,7 +24,7 @@ package p {
|
||||
package
|
||||
|
||||
package p {
|
||||
public fun foo(/*0*/ a: [ERROR : A<Int>]): kotlin.Unit
|
||||
public fun foo(/*0*/ a: [ERROR : A]<kotlin.Int>): kotlin.Unit
|
||||
|
||||
public final class A</*0*/ X, /*1*/ Y> {
|
||||
public constructor A</*0*/ X, /*1*/ Y>()
|
||||
@@ -41,7 +41,7 @@ package
|
||||
internal fun test(): kotlin.Unit
|
||||
|
||||
package p {
|
||||
public fun foo(/*0*/ a: [ERROR : A<Int>]): kotlin.Unit
|
||||
public fun foo(/*0*/ a: [ERROR : A]<kotlin.Int>): kotlin.Unit
|
||||
|
||||
public final class A</*0*/ X, /*1*/ Y> {
|
||||
// -- Module: <m1> --
|
||||
|
||||
Reference in New Issue
Block a user