[Test] Update testdata of diagnostic tests during to change language to 1.5

Mostly this commit contains changes of descriptor dump of sealed classes
  tests according to changed visibility of sealed class constructor
This commit is contained in:
Dmitriy Novozhilov
2021-01-13 10:45:38 +03:00
parent d7cfd9c188
commit f14bd87ecc
71 changed files with 143 additions and 150 deletions
@@ -65,7 +65,7 @@ public open class OpenClass2 {
}
public sealed class Sealed {
private constructor Sealed()
internal constructor Sealed()
public final fun check(/*0*/ arg: Sealed.Sealed1): kotlin.Unit
public open override /*1*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
@@ -88,3 +88,4 @@ public sealed class Sealed {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
}
@@ -1,9 +1,10 @@
package
public sealed class My {
private constructor My(/*0*/ x: kotlin.Int?)
internal constructor My(/*0*/ x: kotlin.Int?)
public open val x: kotlin.Int?
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
}