Files
kotlin/compiler/testData/codegen/bytecodeListing/localFunctions/inInitBlock.kt
2021-04-23 17:58:16 +02:00

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() {}
}
}
}