Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/argWithDefaultValueInAnnotationClass.kt.txt
T
2024-02-16 10:19:38 +00:00

14 lines
194 B
Kotlin
Vendored

open annotation class ModuleInfo : Annotation {
val keyBind: Int
field = keyBind
get
constructor(keyBind: Int = 1234) /* primary */ {
super/*Any*/()
/* <init>() */
}
}