febac0dd5f
^KT-65979
12 lines
263 B
Kotlin
Vendored
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" |