Files
kotlin-fork/compiler/testData/ir/irText/classes/primaryConstructor.kt.txt
T

64 lines
614 B
Plaintext
Vendored

class Test1 {
constructor(x: Int, y: Int) /* primary */ {
super/*Any*/()
/* InstanceInitializerCall */
}
val x: Int
field = x
get
val y: Int
field = y
get
}
class Test2 {
constructor(x: Int, y: Int) /* primary */ {
super/*Any*/()
/* InstanceInitializerCall */
}
val y: Int
field = y
get
val x: Int
field = x
get
}
class Test3 {
constructor(x: Int, y: Int) /* primary */ {
super/*Any*/()
/* InstanceInitializerCall */
}
val y: Int
field = y
get
val x: Int
get
init {
#x = x
}
}