Files
kotlin/compiler/testData/codegen/dumpDeclarations/annotation.kt
2016-03-29 13:49:36 +03:00

12 lines
273 B
Kotlin
Vendored

@Retention(AnnotationRetention.RUNTIME)
internal annotation class Ann(
val i: Int,
val s: Short,
val f: Float,
val d: Double,
val l: Long,
val b: Byte,
val bool: Boolean,
val c: Char,
val str: String
)