Files
kotlin-fork/idea/testData/intentions/simplifyWhenWithBooleanConstantCondition/noBooolean.kt
T
2017-11-10 15:34:08 +03:00

8 lines
140 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun test(i: Int) {
<caret>when {
i == 1 -> println(1)
else -> println(2)
}
}