Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/argWithDefaultValueInAnnotationClass.kt.txt
T

13 lines
193 B
Kotlin
Vendored

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