[FE 1.0] Update test data with new error type representation

This commit is contained in:
Victor Petukhov
2022-03-17 13:34:01 +04:00
committed by teamcity
parent b5933c70e2
commit 27fa632630
285 changed files with 777 additions and 744 deletions
@@ -3,7 +3,7 @@ package
package a {
public interface A {
public abstract val a: [ERROR : A]
public abstract val a: [Error type: Unresolved type for A]
public abstract val b: a.A
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
@@ -27,6 +27,6 @@ public final class NotImported {
package pkg {
public val v: Klass.Nested
public val x: [ERROR : NotImported]
public val x: [Error type: Unresolved type for NotImported]
public fun foo(): Klass
}
@@ -1,7 +1,7 @@
package
public fun test(/*0*/ b: [ERROR : B]): kotlin.Unit
public fun test2(/*0*/ b: [ERROR : B]): kotlin.Unit
public fun test(/*0*/ b: [Error type: Unresolved type for B]): kotlin.Unit
public fun test2(/*0*/ b: [Error type: Unresolved type for B]): kotlin.Unit
package a {
@@ -12,5 +12,5 @@ package b {
package c {
public val v1: kotlin.Int = 1
public val v2: kotlin.String = ""
public val v3: [ERROR : Type for y]
public val v3: [Error type: Not found recorded type for y]
}