Files
kotlin/compiler/testData/codegen/box/lazyCodegen/safeCallAndArray.kt
2018-06-09 19:15:38 +03:00

13 lines
200 B
Kotlin
Vendored

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