Files
kotlin/compiler/testData/codegen/bytecodeText/lineNumbers/inlineLambdaObjectInit.kt

13 lines
184 B
Kotlin
Vendored

fun box(): String {
var result = ""
run {
object {
init {
result = "OK"
}
}
}
return result
}
// 1 LINENUMBER 6