Files
kotlin/compiler/testData/codegen/box/functions/localFunctions/localFunctionInConstructor.kt
2015-04-07 13:08:51 +03:00

16 lines
220 B
Kotlin
Vendored

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