[FE 1.0] Update test data with new error type representation
This commit is contained in:
committed by
teamcity
parent
b5933c70e2
commit
27fa632630
@@ -11,7 +11,7 @@ public object A {
|
||||
public final class Test {
|
||||
public constructor Test()
|
||||
private final val y: Test.y.`<no name provided>`
|
||||
public final val z: [ERROR : Type for y]
|
||||
public final val z: [Error type: Not found recorded type for y]
|
||||
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
|
||||
@@ -20,7 +20,7 @@ public final class Test {
|
||||
public final class Test2 {
|
||||
public constructor Test2()
|
||||
private final val a: Test2.a.`<no name provided>`
|
||||
public final val b: [ERROR : Type for a.x]
|
||||
public final val b: [Error type: Not found recorded type for a.x]
|
||||
public final val c: kotlin.Int = 1
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
public val b: [ERROR : B]<out [ERROR : *]>
|
||||
public val b: [Error type: Type for error type constructor (B)]<out [Error type: Error type projection]>
|
||||
|
||||
public final class B {
|
||||
public constructor B()
|
||||
|
||||
@@ -2,7 +2,7 @@ package
|
||||
|
||||
public final class ClassB {
|
||||
public constructor ClassB()
|
||||
@[ERROR : ClassA] /* annotation class not found */ public final fun `<no name provided>`(): kotlin.Unit
|
||||
@[Error type: Unresolved type for ClassA] /* annotation class not found */ public final fun `<no name provided>`(): kotlin.Unit
|
||||
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,7 +1,7 @@
|
||||
package
|
||||
|
||||
public final class Tree</*0*/ T> {
|
||||
public constructor Tree</*0*/ T>(/*0*/ T: [ERROR : Type annotation was missing for parameter T], /*1*/ `<no name provided>`: Tree<T>, /*2*/ left: [ERROR : Type annotation was missing for parameter left], /*3*/ `<no name provided>`: Tree<T>, /*4*/ right: [ERROR : Type annotation was missing for parameter right])
|
||||
public constructor Tree</*0*/ T>(/*0*/ T: [Error type: Missed a type for a value parameter T], /*1*/ `<no name provided>`: Tree<T>, /*2*/ left: [Error type: Missed a type for a value parameter left], /*3*/ `<no name provided>`: Tree<T>, /*4*/ right: [Error type: Missed a type for a value parameter right])
|
||||
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,4 +1,4 @@
|
||||
package
|
||||
|
||||
public val p: [ERROR : Type for ::p]
|
||||
public fun foo(): [ERROR : Error function type]
|
||||
public val p: [Error type: Not found recorded type for ::p]
|
||||
public fun foo(): [Error type: Return type for function cannot be resolved]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package
|
||||
|
||||
public val </*0*/ T : [ERROR : Cyclic upper bounds]> prop: [ERROR : No type, no body]
|
||||
public fun </*0*/ T : [ERROR : Cyclic upper bounds]> foo(): kotlin.Unit
|
||||
public val </*0*/ T : [Error type: Cyclic upper bounds]> prop: [Error type: Return type for property prop cannot be resolved]
|
||||
public fun </*0*/ T : [Error type: Cyclic upper bounds]> foo(): kotlin.Unit
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package
|
||||
|
||||
public final class MyClass</*0*/ T : [ERROR : Cyclic upper bounds]> {
|
||||
public constructor MyClass</*0*/ T : [ERROR : Cyclic upper bounds]>()
|
||||
public final class MyClass</*0*/ T : [Error type: Cyclic upper bounds]> {
|
||||
public constructor MyClass</*0*/ T : [Error type: Cyclic upper bounds]>()
|
||||
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
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package
|
||||
|
||||
public final class MyClass</*0*/ T : [ERROR : Cyclic upper bounds]> {
|
||||
public constructor MyClass</*0*/ T : [ERROR : Cyclic upper bounds]>()
|
||||
public final class MyClass</*0*/ T : [Error type: Cyclic upper bounds]> {
|
||||
public constructor MyClass</*0*/ T : [Error type: Cyclic upper bounds]>()
|
||||
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
|
||||
|
||||
+2
-2
@@ -2,9 +2,9 @@ package
|
||||
|
||||
public final class My {
|
||||
public constructor My()
|
||||
public final val </*0*/ T : [ERROR : Cyclic upper bounds]> prop: [ERROR : ?]
|
||||
public final val </*0*/ T : [Error type: Cyclic upper bounds]> prop: [Error type: Error type parameter]
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public final fun </*0*/ T : [ERROR : Cyclic upper bounds]> foo(): kotlin.Unit
|
||||
public final fun </*0*/ T : [Error type: Cyclic upper bounds]> foo(): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
package
|
||||
|
||||
public val </*0*/ T : [ERROR : Cyclic upper bounds]> prop: [ERROR : ?]
|
||||
public fun </*0*/ T : [ERROR : Cyclic upper bounds]> foo(): kotlin.Unit
|
||||
public val </*0*/ T : [Error type: Cyclic upper bounds]> prop: [Error type: Error type parameter]
|
||||
public fun </*0*/ T : [Error type: Cyclic upper bounds]> foo(): kotlin.Unit
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package
|
||||
|
||||
public fun lambda(/*0*/ x: kotlin.Int?): [ERROR : <ERROR FUNCTION RETURN TYPE>]
|
||||
public fun lambda(/*0*/ x: kotlin.Int?): [Error type: Return type for function cannot be resolved]
|
||||
|
||||
@@ -16,7 +16,7 @@ public interface MemoizedFunctionToNotNull</*0*/ K, /*1*/ V> {
|
||||
|
||||
public final class Refiner {
|
||||
public constructor Refiner()
|
||||
public final val memoizedFunctionLambda: [ERROR : Type for createMemoizedFunction { it.foo() }]
|
||||
public final val memoizedFunctionLambda: [Error type: Not found recorded type for createMemoizedFunction { it.foo() }]
|
||||
public final val memoizedFunctionReference: MemoizedFunctionToNotNull<TypeConstructor, kotlin.Boolean>
|
||||
public final val memoizedFunctionTypes: MemoizedFunctionToNotNull<TypeConstructor, kotlin.Boolean>
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package
|
||||
|
||||
public val x: () -> ???
|
||||
public val z: [ERROR : Type for z]
|
||||
public val z: [Error type: Not found recorded type for z]
|
||||
public fun bar1(): () -> ???
|
||||
public fun bar2(): () -> kotlin.Unit
|
||||
public fun bar3(): kotlin.Unit
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
package kt41 {
|
||||
public fun aaa(): [ERROR : Error function type]
|
||||
public fun aaa(): [Error type: Return type for function cannot be resolved]
|
||||
public fun bbb(): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ public final class Activity {
|
||||
|
||||
public final class Fragment {
|
||||
public constructor Fragment()
|
||||
public final fun call(): [ERROR : Error function type]
|
||||
public final fun call(): [Error type: Return type for function cannot be resolved]
|
||||
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
|
||||
@@ -44,7 +44,7 @@ public final class Outer {
|
||||
public final class Nested {
|
||||
public constructor Nested()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public final fun foo(/*0*/ s: kotlin.String): [ERROR : Error function type]
|
||||
public final fun foo(/*0*/ s: kotlin.String): [Error type: Return type for function cannot be resolved]
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user