Files
kotlin-fork/compiler/testData/codegen/box/contracts/isNullString.kt
T
2024-02-26 13:38:49 +00:00

12 lines
263 B
Kotlin
Vendored

// WITH_STDLIB
import kotlin.test.*
fun box(): String {
assertEquals("STR", nullableString("str"))
assertEquals("", nullableString(null))
return "OK"
}
private fun nullableString(string: String?): String = if (string.isNullOrBlank()) "" else "STR"