blob: 11867919264a3192ca1d9c67743bcf5c4cfcd967 [file]
// WITH_STDLIB
import kotlin.test.*
fun box(): String {
var x = 1
fun local1() {
x++
}
class A {
fun bar() {
local1()
}
}
A().bar()
return "OK"
}