package test

kotlin.annotation.annotation() internal final class BooleanAnno : kotlin.Annotation {
    /*primary*/ public constructor BooleanAnno(/*0*/ value: kotlin.Boolean)
    internal final val value: kotlin.Boolean
        internal final fun <get-value>(): kotlin.Boolean
}

kotlin.annotation.annotation() internal final class ByteAnno : kotlin.Annotation {
    /*primary*/ public constructor ByteAnno(/*0*/ value: kotlin.Byte)
    internal final val value: kotlin.Byte
        internal final fun <get-value>(): kotlin.Byte
}

kotlin.annotation.annotation() internal final class CharAnno : kotlin.Annotation {
    /*primary*/ public constructor CharAnno(/*0*/ value: kotlin.Char)
    internal final val value: kotlin.Char
        internal final fun <get-value>(): kotlin.Char
}

test.IntAnno(value = 42) test.ShortAnno(value = 42.toShort()) test.ByteAnno(value = 42.toByte()) test.LongAnno(value = 42.toLong()) test.CharAnno(value = \u0041 ('A')) test.BooleanAnno(value = false) test.FloatAnno(value = 3.14.toFloat()) test.DoubleAnno(value = 3.14.toDouble()) internal final class Class {
    /*primary*/ public constructor Class()
}

kotlin.annotation.annotation() internal final class DoubleAnno : kotlin.Annotation {
    /*primary*/ public constructor DoubleAnno(/*0*/ value: kotlin.Double)
    internal final val value: kotlin.Double
        internal final fun <get-value>(): kotlin.Double
}

kotlin.annotation.annotation() internal final class FloatAnno : kotlin.Annotation {
    /*primary*/ public constructor FloatAnno(/*0*/ value: kotlin.Float)
    internal final val value: kotlin.Float
        internal final fun <get-value>(): kotlin.Float
}

kotlin.annotation.annotation() internal final class IntAnno : kotlin.Annotation {
    /*primary*/ public constructor IntAnno(/*0*/ value: kotlin.Int)
    internal final val value: kotlin.Int
        internal final fun <get-value>(): kotlin.Int
}

kotlin.annotation.annotation() internal final class LongAnno : kotlin.Annotation {
    /*primary*/ public constructor LongAnno(/*0*/ value: kotlin.Long)
    internal final val value: kotlin.Long
        internal final fun <get-value>(): kotlin.Long
}

kotlin.annotation.annotation() internal final class ShortAnno : kotlin.Annotation {
    /*primary*/ public constructor ShortAnno(/*0*/ value: kotlin.Short)
    internal final val value: kotlin.Short
        internal final fun <get-value>(): kotlin.Short
}
