Files
kotlin-fork/native/native.tests/testData/codegen/contracts/isNullString.kt
T
Vladimir Sukharev df2dcccbf7 [Tests] Removed moved tests from old testing
^KT-64256 Fixed
2023-12-18 11:15:15 +00:00

11 lines
248 B
Kotlin
Vendored

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"