[FE 1.0] Update test data with new error type representation
This commit is contained in:
committed by
teamcity
parent
b5933c70e2
commit
27fa632630
+2
-2
@@ -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
-1
@@ -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
|
||||
|
||||
+2
-2
@@ -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
|
||||
|
||||
Vendored
+1
-1
@@ -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
-1
@@ -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
|
||||
|
||||
Vendored
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user