Files
kotlin-fork/js/js.translator/testData/box/closure/closureInNestedFunctionsWhichMixedWithObject.kt
T

14 lines
210 B
Kotlin
Vendored

package foo
fun box(): String {
val t = myRun {
object {
fun boo(param: String): String {
return myRun { param }
}
}
}
return t.boo("OK")
}