Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/valueParametersWithAnnotations.kt.txt
T
2020-11-26 00:14:03 +03:00

31 lines
345 B
Plaintext
Vendored

annotation class TestAnn : Annotation {
constructor(x: String) /* primary */
val x: String
field = x
get
}
fun testFun(x: Int) {
}
class TestClassConstructor1 {
constructor(x: Int) /* primary */ {
TODO("IrDelegatingConstructorCall")
/* InstanceInitializerCall */
}
val xx: Int
field = x
get
}