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

14 lines
138 B
Plaintext
Vendored

class Test {
constructor(x: Int = 0) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: Int
field = x
get
}