Files
kotlin/compiler/testData/codegen/box/closures/localFunctionInInitializer.kt
2013-03-26 15:43:25 +04:00

12 lines
150 B
Kotlin

fun box(): String {
fun local():Int {
return 10;
}
class A {
val test = local()
}
return if (A().test == 10) "OK" else "fail"
}