[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
@@ -3,7 +3,7 @@ package
public final class A {
public constructor A()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final fun foo(/*0*/ x: [ERROR : Inner<Int>]<kotlin.Int>): kotlin.Unit
public final fun foo(/*0*/ x: [Error type: Unresolved type for Inner<Int>]<kotlin.Int>): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
@@ -3,7 +3,7 @@ package
public final class A {
public constructor A()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final fun foo(/*0*/ x: [ERROR : Inner]<kotlin.Int>): kotlin.Unit
public final fun foo(/*0*/ x: [Error type: Type for error type constructor (Inner)]<kotlin.Int>): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
@@ -26,14 +26,14 @@ public final class Outer</*0*/ E> {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class Nested : Inv<[ERROR : Inner]> {
public final class Nested : Inv<[Error type: Type for error type constructor (Inner)]> {
public constructor Nested()
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 object Obj : Inv<[ERROR : Inner]> {
public object Obj : Inv<[Error type: Type for error type constructor (Inner)]> {
private constructor Obj()
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 fun bar(/*0*/ x: [ERROR : Inner]): kotlin.Unit
public fun bar(/*0*/ x: [Error type: Type for error type constructor (Inner)]): kotlin.Unit
public final class E {
public constructor E()
@@ -25,7 +25,7 @@ public final class Outer</*0*/ E> {
public final class Nested {
public constructor Nested()
public final fun bar(/*0*/ x: [ERROR : Inner]): kotlin.Unit
public final fun bar(/*0*/ x: [Error type: Type for error type constructor (Inner)]): 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
@@ -36,12 +36,12 @@ public final class A</*0*/ T> {
public final class Nested {
public constructor Nested()
public final val c: [ERROR : C]<kotlin.Int>?
public final val d: [ERROR : D]?
public final val innerMost: [ERROR : Innermost]<kotlin.String>?
public final val x: [ERROR : B]<kotlin.String>?
public final val y: [ERROR : C]<kotlin.String, kotlin.String>?
public final val z: [ERROR : D]<kotlin.String>?
public final val c: [Error type: Type for error type constructor (C)]<kotlin.Int>?
public final val d: [Error type: Type for error type constructor (D)]?
public final val innerMost: [Error type: Type for error type constructor (Innermost)]<kotlin.String>?
public final val x: [Error type: Type for error type constructor (B)]<kotlin.String>?
public final val y: [Error type: Type for error type constructor (C)]<kotlin.String, kotlin.String>?
public final val z: [Error type: Type for error type constructor (D)]<kotlin.String>?
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
@@ -4,7 +4,7 @@ public final class Outer</*0*/ T> {
public constructor Outer</*0*/ T>()
public final fun bar(/*0*/ x: Outer.Nested): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final fun foo(/*0*/ x: Outer<kotlin.String>.Inner, /*1*/ y: [ERROR : Inner], /*2*/ z: Outer<T>.Inner): kotlin.Unit
public final fun foo(/*0*/ x: Outer<kotlin.String>.Inner, /*1*/ y: [Error type: Type for error type constructor (Inner)], /*2*/ z: Outer<T>.Inner): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
@@ -1,13 +1,13 @@
package
public fun error1(): [ERROR : Inner3]<A, B, C, D>
public fun error2(): [ERROR : Inner2]<A, B, C, D>
public fun error3(): [ERROR : Inner3]<A, B, C>
public fun error4(): [ERROR : Inner4]<A, B, C>
public fun error5(): [ERROR : Inner5]<A, B, C>
public fun error6(): [ERROR : Inner5]<A, B, C>
public fun error7(): [ERROR : Inner5]<kotlin.String, A, B>
public fun errorTypeWithArguments(): [ERROR : Q<A>.W<B, C, D>.R.M]<A, B, C, D>
public fun error1(): [Error type: Type for error type constructor (Inner3)]<A, B, C, D>
public fun error2(): [Error type: Type for error type constructor (Inner2)]<A, B, C, D>
public fun error3(): [Error type: Type for error type constructor (Inner3)]<A, B, C>
public fun error4(): [Error type: Type for error type constructor (Inner4)]<A, B, C>
public fun error5(): [Error type: Type for error type constructor (Inner5)]<A, B, C>
public fun error6(): [Error type: Type for error type constructor (Inner5)]<A, B, C>
public fun error7(): [Error type: Type for error type constructor (Inner5)]<kotlin.String, A, B>
public fun errorTypeWithArguments(): [Error type: Unresolved type for Q<A>.W<B, C, D>.R.M]<A, B, C, D>
public fun ok1(): test.Outer<A>.Inner<B, C>.Inner2
public fun ok2(): test.Outer<A>.Inner<B, C>.Inner2
public fun ok22(): test.Outer<A>.Inner<B, C>.Inner3<D>