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

27 lines
313 B
Kotlin
Vendored

class Outer {
inner class Inner {
val x: Int
field = x
get
constructor() {
<this>.this/*Inner*/(x = 0)
}
constructor(x: Int) /* primary */ {
super/*Any*/()
/* <init>() */
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}