[FE 1.0] Update test data with new error type representation
This commit is contained in:
committed by
teamcity
parent
b5933c70e2
commit
27fa632630
@@ -1,14 +1,14 @@
|
||||
package
|
||||
|
||||
public final class Class1</*0*/ T : Class2<Class1<[ERROR : X]>>> {
|
||||
public constructor Class1</*0*/ T : Class2<Class1<[ERROR : X]>>>()
|
||||
public final class Class1</*0*/ T : Class2<Class1<[Error type: Unresolved type for X]>>> {
|
||||
public constructor Class1</*0*/ T : Class2<Class1<[Error type: Unresolved type for X]>>>()
|
||||
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 final class Class2</*0*/ T : Class1<Class2<[ERROR : X]>>> {
|
||||
public constructor Class2</*0*/ T : Class1<Class2<[ERROR : X]>>>()
|
||||
public final class Class2</*0*/ T : Class1<Class2<[Error type: Unresolved type for X]>>> {
|
||||
public constructor Class2</*0*/ T : Class1<Class2<[Error type: Unresolved type for X]>>>()
|
||||
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
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
package
|
||||
|
||||
public val a: [ERROR : Type for A]
|
||||
public val a: [Error type: Not found recorded type for A]
|
||||
public val b: B.Companion
|
||||
public val c: [ERROR : Type for C]
|
||||
public val c: [Error type: Not found recorded type for C]
|
||||
public val d: D.Companion
|
||||
public val e: kotlin.Int
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -2,7 +2,7 @@ package
|
||||
|
||||
public fun test(): kotlin.Unit
|
||||
public fun Foo.foo(/*0*/ body: Foo.() -> kotlin.Unit): kotlin.Unit
|
||||
public fun Foo.zbar(/*0*/ body: [ERROR : Recursive type alias: ZBar].() -> kotlin.Unit): kotlin.Unit
|
||||
public fun Foo.zbar(/*0*/ body: [Error type: Recursive type alias ZBar].() -> kotlin.Unit): kotlin.Unit
|
||||
|
||||
public final class Bar {
|
||||
public constructor Bar()
|
||||
|
||||
+2
-2
@@ -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
|
||||
|
||||
+1
-1
@@ -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>()
|
||||
|
||||
Reference in New Issue
Block a user