blob: 4507ecdcc6979b2c547c39455a17415ab262f0cb [file]
// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
fun local():Int {
return 10;
}
class A {
val test = local()
}
return if (A().test == 10) "OK" else "fail"
}