Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/annotations/classes/WithArgument.txt
T

54 lines
2.2 KiB
Plaintext
Vendored

package test
internal final annotation 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
}
internal final annotation 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
}
internal final annotation 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()
}
internal final annotation 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
}
internal final annotation 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
}
internal final annotation 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
}
internal final annotation 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
}
internal final annotation 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
}