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

31 lines
324 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 */ {
super/*Any*/()
/* InstanceInitializerCall */
}
val xx: Int
field = x
get
}