fix tests in org.jetbrains.kotlin.serialization.builtins
This commit is contained in:
+7
-7
@@ -1,24 +1,24 @@
|
||||
package test
|
||||
|
||||
test.JustEnum(weapon = Weapon.SCISSORS) test.EnumArray(enumArray = {}) internal final class C1 {
|
||||
test.JustEnum(weapon = Weapon.SCISSORS) test.EnumArray(enumArray = {}) public final class C1 {
|
||||
public constructor C1()
|
||||
}
|
||||
|
||||
test.EnumArray(enumArray = {Weapon.PAPER, Weapon.ROCK}) internal final class C2 {
|
||||
test.EnumArray(enumArray = {Weapon.PAPER, Weapon.ROCK}) public final class C2 {
|
||||
public constructor C2()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class EnumArray : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class EnumArray : kotlin.Annotation {
|
||||
public constructor EnumArray(/*0*/ enumArray: kotlin.Array<test.Weapon>)
|
||||
internal final val enumArray: kotlin.Array<test.Weapon>
|
||||
public final val enumArray: kotlin.Array<test.Weapon>
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class JustEnum : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class JustEnum : kotlin.Annotation {
|
||||
public constructor JustEnum(/*0*/ weapon: test.Weapon)
|
||||
internal final val weapon: test.Weapon
|
||||
public final val weapon: test.Weapon
|
||||
}
|
||||
|
||||
internal final enum class Weapon : kotlin.Enum<test.Weapon> {
|
||||
public final enum class Weapon : kotlin.Enum<test.Weapon> {
|
||||
enum entry ROCK
|
||||
|
||||
enum entry PAPER
|
||||
|
||||
Reference in New Issue
Block a user