Files
kotlin-fork/compiler/testData/loadKotlin/annotations/classes/WithMultipleArguments.kt
T
Alexander Udalov 4aeeafdff0 Deserialize annotations on classes
First version, not all kinds of value arguments of annotations are supported
2013-08-23 17:39:18 +04:00

6 lines
124 B
Kotlin

package test
annotation class Anno(val int: Int, val string: String, val double: Double)
Anno(42, "OK", 3.14) class Class