Files
kotlin/compiler/testData/codegen/box/strings/singleConcatNullable.kt

8 lines
125 B
Kotlin
Vendored

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