Files
kotlin-fork/js/js.translator/testData/box/closure/closureInNestedFunctionsWhichMixedWithObject.kt
T
2017-07-19 12:24:09 +03:00

15 lines
243 B
Kotlin
Vendored

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