fix tests in org.jetbrains.kotlin.serialization.builtins
This commit is contained in:
+4
-4
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final enum class My : kotlin.Enum<test.My> {
|
||||
public final enum class My : kotlin.Enum<test.My> {
|
||||
enum entry ALPHA
|
||||
|
||||
enum entry BETA
|
||||
@@ -18,11 +18,11 @@ internal final enum class My : kotlin.Enum<test.My> {
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.My>
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ann : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ann : kotlin.Annotation {
|
||||
public constructor ann(/*0*/ vararg m: test.My /*kotlin.Array<out test.My>*/)
|
||||
internal final val m: kotlin.Array<out test.My>
|
||||
public final val m: kotlin.Array<out test.My>
|
||||
}
|
||||
|
||||
test.ann(m = {My.ALPHA, My.BETA}) kotlin.annotation.annotation() internal final class annotated : kotlin.Annotation {
|
||||
test.ann(m = {My.ALPHA, My.BETA}) kotlin.annotation.annotation() public final class annotated : kotlin.Annotation {
|
||||
public constructor annotated()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user