package test public final annotation class AByte : kotlin.Annotation { public constructor AByte(/*0*/ kotlin.Byte) public final val value: kotlin.Byte } public final annotation class AChar : kotlin.Annotation { public constructor AChar(/*0*/ kotlin.Char) public final val value: kotlin.Char } public final annotation class ADouble : kotlin.Annotation { public constructor ADouble(/*0*/ kotlin.Double) public final val value: kotlin.Double } public final annotation class AFloat : kotlin.Annotation { public constructor AFloat(/*0*/ kotlin.Float) public final val value: kotlin.Float } public final annotation class AInt : kotlin.Annotation { public constructor AInt(/*0*/ kotlin.Int) public final val value: kotlin.Int } public final annotation class ALong : kotlin.Annotation { public constructor ALong(/*0*/ kotlin.Long) public final val value: kotlin.Long } public final annotation class AString : kotlin.Annotation { public constructor AString(/*0*/ 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() } public final class Test { public constructor Test() public companion object Companion { private constructor Companion() public const final val vbyte: kotlin.Byte public const final val vchar: kotlin.Char public const final val vdouble: kotlin.Double public const final val vfloat: kotlin.Float public const final val vint: kotlin.Int public const final val vlong: kotlin.Long public const final val vstring: kotlin.String } }