Files
kotlin-fork/idea/testData/inspectionsLocal/branched/introduceWhenSubject/whenWithUnmatchedCandidateSubjects.kt
T
2017-12-26 18:39:48 +03:00

9 lines
214 B
Kotlin
Vendored

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