Files
kotlin/compiler/testData/codegen/box/closures/localFunctionInInitializer.kt
2019-11-19 11:00:09 +03:00

13 lines
180 B
Kotlin
Vendored

// 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"
}