Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/classes/WithArgument.txt
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

54 lines
2.3 KiB
Plaintext

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: kotlin.Int) test.ShortAnno(value = 42.toShort(): kotlin.Short) test.ByteAnno(value = 42.toByte(): kotlin.Byte) test.LongAnno(value = 42.toLong(): kotlin.Long) test.CharAnno(value = \u0041 ('A'): kotlin.Char) test.BooleanAnno(value = false: kotlin.Boolean) test.FloatAnno(value = 3.14.toFloat(): kotlin.Float) test.DoubleAnno(value = 3.14.toDouble(): kotlin.Double) 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
}