blob: bfe312302c8d3862b3f8c72fde503c852ea4f5be [file]
// WITH_STDLIB
import kotlin.test.*
fun box(): String {
fun bar() {
fun local1() {
bar()
}
local1()
var x = 0
fun local2() {
x++
bar()
}
local2()
}
return "OK"
}