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

22 lines
229 B
Plaintext
Vendored

class C {
constructor(test1: Int, test2: Int) /* primary */ {
super/*Any*/()
/* InstanceInitializerCall */
}
val test1: Int
field = test1
get
var test2: Int
field = test2
get
set
}