Continue processing not builder inference stub variables in the type checker during computing common super type

^KT-47148 Fixed
This commit is contained in:
Victor Petukhov
2021-06-11 15:38:50 +03:00
parent 85f4cec948
commit 559bedf5ae
8 changed files with 56 additions and 1 deletions
@@ -0,0 +1,12 @@
package
public val str1: kotlin.String? = null
public val str2: kotlin.String? = null
public fun </*0*/ T> visit(/*0*/ arg: Visitor<T>): T
public interface Visitor</*0*/ T> {
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
public abstract fun visit(/*0*/ key: kotlin.String): T
}