Files
kotlin-fork/compiler/testData/codegen/box/strings/singleConcatNullable.kt
T
2019-11-19 11:00:09 +03:00

9 lines
155 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun f(s: String?): String {
return "$s"
}
fun box(): String {
if (f(null) != "null") return "Fail"
return "OK"
}