[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 final class Foo {
|
||||
public final val bar: 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
|
||||
public final fun test(/*0*/ a: [ERROR : Foo.`object`]): kotlin.Unit
|
||||
public final fun test(/*0*/ a: [Error type: Unresolved type for Foo.`object`]): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ package
|
||||
public fun foo(): C
|
||||
|
||||
public open class C {
|
||||
public constructor C</*0*/ T : [ERROR : Cyclic upper bounds]>(/*0*/ t: T!)
|
||||
public constructor C</*0*/ T : [Error type: Cyclic upper bounds]>(/*0*/ t: T!)
|
||||
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
-1
@@ -3,7 +3,7 @@ package
|
||||
public final class A : X {
|
||||
public constructor A()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
protected open override /*1*/ fun getFoo(): [ERROR : Error function type]
|
||||
protected open override /*1*/ fun getFoo(): [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
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package
|
||||
|
||||
public fun main(/*0*/ xyz: XYZ<*>): XYZ<(raw) [ERROR : Cyclic upper bounds]>!
|
||||
public fun main(/*0*/ xyz: XYZ<*>): XYZ<(raw) [Error type: Cyclic upper bounds]>!
|
||||
|
||||
public interface XYZ</*0*/ X : [ERROR : Cyclic upper bounds]> {
|
||||
public interface XYZ</*0*/ X : [Error type: Cyclic upper bounds]> {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public abstract fun foo(): XYZ<(raw) [ERROR : Cyclic upper bounds]>!
|
||||
public abstract fun foo(): XYZ<(raw) [Error type: Cyclic upper bounds]>!
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package
|
||||
|
||||
public fun main(/*0*/ xyz: XYZ<*, *, *>): XYZ<(raw) [ERROR : Cyclic upper bounds], (raw) [ERROR : Cyclic upper bounds], (raw) [ERROR : Cyclic upper bounds]>!
|
||||
public fun main(/*0*/ xyz: XYZ<*, *, *>): XYZ<(raw) [Error type: Cyclic upper bounds], (raw) [Error type: Cyclic upper bounds], (raw) [Error type: Cyclic upper bounds]>!
|
||||
|
||||
public interface XYZ</*0*/ X : Y!, /*1*/ Y : [ERROR : Cyclic upper bounds], /*2*/ Z : [ERROR : Cyclic upper bounds]> {
|
||||
public interface XYZ</*0*/ X : Y!, /*1*/ Y : [Error type: Cyclic upper bounds], /*2*/ Z : [Error type: Cyclic upper bounds]> {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public abstract fun foo(): XYZ<(raw) [ERROR : Cyclic upper bounds], (raw) [ERROR : Cyclic upper bounds], (raw) [ERROR : Cyclic upper bounds]>!
|
||||
public abstract fun foo(): XYZ<(raw) [Error type: Cyclic upper bounds], (raw) [Error type: Cyclic upper bounds], (raw) [Error type: Cyclic upper bounds]>!
|
||||
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