Files

8 lines
187 B
Kotlin
Vendored

fun annotatedSwitch(str: String) =
when {
<expr>@Suppress("DEPRECATION")</expr>
str.isBlank() -> null
str.isNotEmpty() != null -> null
else -> 1
}