Files
kotlin-fork/compiler/testData/codegen/box/closures/kt47840.kt
T
2021-07-23 14:58:23 +03:00

17 lines
240 B
Kotlin
Vendored

fun box(): String {
var t = ""
fun foo(x: String) {
fun bar() {
fun a() {
foo("")
bar()
}
t = x
}
bar()
}
foo("OK")
return t
}