[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
@@ -1,7 +1,7 @@
package
public val test1: [ERROR : Type for overloadedFun5("")]
public val test2: [ERROR : Type for overloadedFun5("", "")]
public val test1: [Error type: Not found recorded type for overloadedFun5("")]
public val test2: [Error type: Not found recorded type for overloadedFun5("", "")]
public val test3: X2
public val test4: X1
public fun overloadedFun5(/*0*/ vararg ss: kotlin.String /*kotlin.Array<out kotlin.String>*/): X1
@@ -2,7 +2,7 @@ package
public fun </*0*/ T1> A<T1>.foo(): X1
public fun </*0*/ T2> A<out T2>.foo(): X2
public fun </*0*/ T> A<out T>.test(): [ERROR : Error function type]
public fun </*0*/ T> A<out T>.test(): [Error type: Return type for function cannot be resolved]
public final class A</*0*/ T> {
public constructor A</*0*/ T>()