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

19 lines
207 B
Plaintext
Vendored

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