Files
kotlin-fork/backend.native/tests/external/codegen/box/closures/localFunctionInFunction.kt
T
2017-03-13 15:31:46 +03:00

14 lines
184 B
Kotlin

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