Files
kotlin-fork/js/js.translator/testData/box/closure/closureInNestedFunctionsWhichMixedWithObject.kt
T
2018-09-12 09:49:25 +03:00

15 lines
244 B
Kotlin
Vendored

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