Files
kotlin-fork/analysis/analysis-api/testData/components/callResolver/resolveCall/annotationOnExpression_whenBranch.kt
T

8 lines
187 B
Kotlin
Vendored

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