[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
@@ -6,7 +6,7 @@ fun test() {
<!DEBUG_INFO_EXPRESSION_TYPE("In<Bound1>")!>testIn()<!>
<!DEBUG_INFO_EXPRESSION_TYPE("Out<Bound1>")!>testOut()<!>
<!DEBUG_INFO_EXPRESSION_TYPE("BiParam<Bound1, Inv<*>>")!>testStarProjection()<!>
<!DEBUG_INFO_EXPRESSION_TYPE("[ERROR : Error function type]")!>testErrorType()<!>
<!DEBUG_INFO_EXPRESSION_TYPE("[Error type: Return type for function cannot be resolved]")!>testErrorType()<!>
<!DEBUG_INFO_EXPRESSION_TYPE("Inv<in Bound1>")!>testInProjection()<!>
<!DEBUG_INFO_EXPRESSION_TYPE("Inv<out Bound1>")!>testOutProjection()<!>
<!DEBUG_INFO_EXPRESSION_TYPE("Inv<Inv<Inv<Bound1>>>")!>testDeeplyNested()<!>
@@ -6,7 +6,7 @@ public fun </*0*/ O> makeOutProjection(/*0*/ arg: O): Inv<out O>
public fun makeStarProjection(): Inv<*>
public fun test(): kotlin.Unit
public fun testDeeplyNested(): Inv<Inv<Inv<Bound1>>>
public fun testErrorType(): [ERROR : Error function type]
public fun testErrorType(): [Error type: Return type for function cannot be resolved]
public fun testIn(): In<Bound1>
public fun testInProjection(): Inv<in Bound1>
public fun testInv(): Inv<Bound1>