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

17 lines
181 B
Plaintext
Vendored

class Test {
constructor(x: Int = 0) /* primary */ {
TODO("IrDelegatingConstructorCall")
/* InstanceInitializerCall */
}
val x: Int
field = x
get
}