Files
kotlin-fork/idea/testData/quickfix/when/commasInConditionWithNoArguments.kt
T
2015-11-30 14:43:03 +03:00

11 lines
308 B
Kotlin
Vendored

// "Replace ',' with '||' in when" "true"
fun test(i: Int, j: Int) {
var b = false
when {
i == 0 -> { /* code 1 */ }
i > 0<caret>, j > 0 -> { /* code 2 */ }
j == 0 -> { /* code 3 */ }
i < 0, j < 0, j > i -> { /* code 4 */ }
else -> { /* other code */ }
}
}