Files
kotlin/compiler/testData/codegen/box/closures/localFunctionInFunction.kt
2018-08-09 14:22:46 +03:00

14 lines
184 B
Kotlin
Vendored

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