fix tests in org.jetbrains.kotlin.jvm.compiler
This commit is contained in:
+22
-22
@@ -1,55 +1,55 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class AByte : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AByte : kotlin.Annotation {
|
||||
public constructor AByte(/*0*/ kotlin.Byte)
|
||||
internal final val value: kotlin.Byte
|
||||
public final val value: kotlin.Byte
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AChar : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AChar : kotlin.Annotation {
|
||||
public constructor AChar(/*0*/ kotlin.Char)
|
||||
internal final val value: kotlin.Char
|
||||
public final val value: kotlin.Char
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ADouble : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ADouble : kotlin.Annotation {
|
||||
public constructor ADouble(/*0*/ kotlin.Double)
|
||||
internal final val value: kotlin.Double
|
||||
public final val value: kotlin.Double
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AFloat : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AFloat : kotlin.Annotation {
|
||||
public constructor AFloat(/*0*/ kotlin.Float)
|
||||
internal final val value: kotlin.Float
|
||||
public final val value: kotlin.Float
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AInt : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AInt : kotlin.Annotation {
|
||||
public constructor AInt(/*0*/ kotlin.Int)
|
||||
internal final val value: kotlin.Int
|
||||
public final val value: kotlin.Int
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ALong : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ALong : kotlin.Annotation {
|
||||
public constructor ALong(/*0*/ kotlin.Long)
|
||||
internal final val value: kotlin.Long
|
||||
public final val value: kotlin.Long
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AString : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AString : kotlin.Annotation {
|
||||
public constructor AString(/*0*/ kotlin.String)
|
||||
internal final val value: kotlin.String
|
||||
public final val value: kotlin.String
|
||||
}
|
||||
|
||||
test.AString(value = "Test") test.AChar(value = \u0063 ('c')) test.AInt(value = 10) test.AByte(value = 11) test.ALong(value = 12.toLong()) test.ADouble(value = 1.2.toDouble()) test.AFloat(value = 1.3.toFloat()) public open class AnnotationClass {
|
||||
public constructor AnnotationClass()
|
||||
}
|
||||
|
||||
internal final class Test {
|
||||
public final class Test {
|
||||
public constructor Test()
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val vbyte: kotlin.Byte
|
||||
internal final val vchar: kotlin.Char
|
||||
internal final val vdouble: kotlin.Double
|
||||
internal final val vfloat: kotlin.Float
|
||||
internal final val vint: kotlin.Int
|
||||
internal final val vlong: kotlin.Long
|
||||
internal final val vstring: kotlin.String
|
||||
public final val vbyte: kotlin.Byte
|
||||
public final val vchar: kotlin.Char
|
||||
public final val vdouble: kotlin.Double
|
||||
public final val vfloat: kotlin.Float
|
||||
public final val vint: kotlin.Int
|
||||
public final val vlong: kotlin.Long
|
||||
public final val vstring: kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user