Files
kotlin-fork/compiler/testData/ir/irText/declarations/primaryCtorDefaultArguments.kt.txt
2024-02-16 10:19:38 +00:00

14 lines
138 B
Kotlin
Vendored

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