Files
kotlin-fork/compiler/testData/ir/irText/classes/innerClassWithDelegatingConstructor.kt
T
2016-10-19 19:13:40 +03:00

5 lines
89 B
Kotlin
Vendored

class Outer {
inner class Inner(val x: Int) {
constructor() : this(0)
}
}