[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,4 +1,4 @@
package
public fun f(): kotlin.Unit
public fun g(/*0*/ a1: kotlin.Array<kotlin.Int>, /*1*/ a2: [ERROR : Array<Int>]<kotlin.Int>): kotlin.Unit
public fun g(/*0*/ a1: kotlin.Array<kotlin.Int>, /*1*/ a2: [Error type: Unresolved type for Array<Int>]<kotlin.Int>): kotlin.Unit
@@ -14,8 +14,8 @@ public interface Inv {
}
public final class Scope</*0*/ InterfaceT, /*1*/ ImplementationT : InterfaceT> {
public constructor Scope</*0*/ InterfaceT, /*1*/ ImplementationT : InterfaceT>(/*0*/ implClass: [ERROR : j.Class<ImplementationT>]<ImplementationT>)
private final val implClass: [ERROR : j.Class<ImplementationT>]<ImplementationT>
public constructor Scope</*0*/ InterfaceT, /*1*/ ImplementationT : InterfaceT>(/*0*/ implClass: [Error type: Unresolved type for j.Class<ImplementationT>]<ImplementationT>)
private final val implClass: [Error type: Unresolved type for j.Class<ImplementationT>]<ImplementationT>
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final fun foo(/*0*/ c: kotlin.collections.Collection<InterfaceT>): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
@@ -1,7 +1,7 @@
package
public val test1: kotlin.String
public val test2: [ERROR : Type for generate {
public val test2: [Error type: Not found recorded type for generate {
baseExtension()
}]
public val test3: kotlin.Int
@@ -1,13 +1,13 @@
package
public val test1: kotlin.String
public val test2: [ERROR : Type for generate {
public val test2: [Error type: Not found recorded type for generate {
starBase()
}]
public val test3: kotlin.String
public val test4: kotlin.Int
public val test5: kotlin.Int
public val test6: [ERROR : Type for generateSpecific {
public val test6: [Error type: Not found recorded type for generateSpecific {
stringBase()
}]
public fun </*0*/ S> generate(/*0*/ @kotlin.BuilderInference g: suspend Controller<S>.() -> kotlin.Unit): S
@@ -1,6 +1,6 @@
package
public val test1: [ERROR : Type for generate {
public val test1: [Error type: Not found recorded type for generate {
yield(A)
}]
public val test2: kotlin.Int
@@ -3,7 +3,7 @@ package
public fun </*0*/ T> f1(/*0*/ f: Foo<T>.() -> kotlin.Unit): kotlin.Unit
@kotlin.OptIn(markerClass = {kotlin.experimental.ExperimentalTypeInference::class}) public fun </*0*/ T> f2(/*0*/ @kotlin.BuilderInference f: Foo<T>.() -> kotlin.Unit): kotlin.Unit
public fun test1(): kotlin.Unit
public fun test2(): [ERROR : Error function type]
public fun test2(): [Error type: Return type for function cannot be resolved]
public fun test3(): kotlin.Unit
public final class Foo</*0*/ T> {
@@ -1,4 +1,4 @@
package
public fun test(/*0*/ c: [ERROR : Continuation<Unit>]<kotlin.Unit>): kotlin.Unit
public fun test(/*0*/ c: [Error type: Unresolved type for Continuation<Unit>]<kotlin.Unit>): kotlin.Unit
public fun test2(/*0*/ c: kotlin.coroutines.Continuation<kotlin.Unit>): kotlin.Unit
@@ -1,5 +1,5 @@
package
public typealias Test1 = [ERROR : SuspendFunction0<Unit>]<kotlin.Unit>
public typealias Test2 = [ERROR : kotlin.SuspendFunction0<Unit>]<kotlin.Unit>
public typealias Test1 = [Error type: Unresolved type for SuspendFunction0<Unit>]<kotlin.Unit>
public typealias Test2 = [Error type: Unresolved type for kotlin.SuspendFunction0<Unit>]<kotlin.Unit>
public typealias Test3 = suspend () -> kotlin.Unit
@@ -1,7 +1,7 @@
package
public final class Base</*0*/ T : [ERROR : Cyclic upper bounds]> : kotlin.collections.HashSet<T> /* = java.util.HashSet<T> */ {
public constructor Base</*0*/ T : [ERROR : Cyclic upper bounds]>()
public final class Base</*0*/ T : [Error type: Cyclic upper bounds]> : kotlin.collections.HashSet<T> /* = java.util.HashSet<T> */ {
public constructor Base</*0*/ T : [Error type: Cyclic upper bounds]>()
invisible_fake final override /*1*/ /*fake_override*/ var map: java.util.HashMap<T!, kotlin.Any!>!
public open override /*1*/ /*fake_override*/ val size: kotlin.Int
public open override /*1*/ /*fake_override*/ fun add(/*0*/ element: T): kotlin.Boolean
@@ -7,7 +7,7 @@ package test {
public val a3: java.lang.Class<test.A>
public val a4: java.lang.Class<test.A>
public val a5: java.lang.Class<test.A.Companion>
public val e0: [ERROR : Type for E.javaClass]
public val e0: [Error type: Not found recorded type for E.javaClass]
public val e1: java.lang.Class<test.E>
public val e2: java.lang.Class<test.E>
public val int0: java.lang.Class<kotlin.Int.Companion>
@@ -15,7 +15,7 @@ public fun n11(): kotlin.Unit
public fun y01(): kotlin.reflect.KProperty1.Getter<Foo, kotlin.Any>
public fun y02(): kotlin.collections.Collection<kotlin.reflect.KCallable<*>>
public fun y03(): kotlin.String?
public fun y04(): [ERROR : Error function type]
public fun y04(): [Error type: Return type for function cannot be resolved]
public final class Foo {
public constructor Foo(/*0*/ prop: kotlin.Any)
@@ -2,7 +2,7 @@ package
public final class A {
public constructor A()
public final val x: kotlin.collections.ArrayList<([ERROR : A]<[ERROR : No type element]>) -> kotlin.Unit> /* = java.util.ArrayList<([ERROR : A]<[ERROR : No type element]>) -> kotlin.Unit> */
public final val x: kotlin.collections.ArrayList<([Error type: Type for error type constructor (A)]<[Error type: No type specified for unknown element]>) -> kotlin.Unit> /* = java.util.ArrayList<([Error type: Type for error type constructor (A)]<[Error type: No type specified for unknown element]>) -> kotlin.Unit> */
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final fun foo(): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
@@ -1,12 +1,12 @@
package
public final data class A {
public constructor A(/*0*/ x: kotlin.collections.Set<[ERROR : CLassNotFound]> = ...)
public final val x: kotlin.collections.Set<[ERROR : CLassNotFound]>
public final operator /*synthesized*/ fun component1(): kotlin.collections.Set<[ERROR : CLassNotFound]>
public final /*synthesized*/ fun copy(/*0*/ x: kotlin.collections.Set<[ERROR : CLassNotFound]> = ...): A
public constructor A(/*0*/ x: kotlin.collections.Set<[Error type: Unresolved type for CLassNotFound]> = ...)
public final val x: kotlin.collections.Set<[Error type: Unresolved type for CLassNotFound]>
public final operator /*synthesized*/ fun component1(): kotlin.collections.Set<[Error type: Unresolved type for CLassNotFound]>
public final /*synthesized*/ fun copy(/*0*/ x: kotlin.collections.Set<[Error type: Unresolved type for CLassNotFound]> = ...): A
public open override /*1*/ /*synthesized*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*synthesized*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*synthesized*/ fun toString(): kotlin.String
public final fun with(/*0*/ x: kotlin.collections.Set<[ERROR : CLassNotFound]>? = ...): kotlin.Unit
public final fun with(/*0*/ x: kotlin.collections.Set<[Error type: Unresolved type for CLassNotFound]>? = ...): kotlin.Unit
}
@@ -1,4 +1,4 @@
package
public val barException: [ERROR : Type for kotlin.Exception("bar")]
public val barException: [Error type: Not found recorded type for kotlin.Exception("bar")]
public val fooException: java.lang.Exception