Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/localFunctionInInitBlock.kt
T

23 lines
332 B
Kotlin
Vendored

class C() {
constructor(x: Int): this() {
fun test() {
fun test() {}
}
}
constructor(y: String): this() {
fun test() {
fun test() {}
}
}
fun test() {
fun test() {}
}
init {
fun test() {
fun test() {}
}
}
}