Files
kotlin-fork/idea/testData/intentions/branched/ifWhen/whenToIf/whenWithoutSubject.kt
T

8 lines
181 B
Kotlin
Vendored

fun test(n: Int): String {
return <caret>when {
n in 0..10 -> "small"
n in 10..100 -> "average"
n in 100..1000 -> "big"
else -> "unknown"
}
}