Files
kotlin-fork/compiler/testData/codegen/regressions/kt2719.kt
T

9 lines
128 B
Kotlin

class Clazz {
class object {
val a = object {
fun run(x: String) = x
}
}
}
fun box() = "OK"