Files
kotlin/compiler/testData/codegen/boxWithStdlib/lazyCodegen/safeCallAndArray.kt
Michael Bogdanov c7b1c0fe52 Store refactoring
#KT-1213 Fixed
2014-11-20 10:20:11 +03:00

12 lines
173 B
Kotlin

class C {
fun calc() : String {
return "OK"
}
}
fun box(): String? {
val c: C? = C()
val arrayList = array(c?.calc(), "")
return arrayList[0]
}