Files
kotlin-fork/idea/testData/intentions/splitIf/keepComments/withOR.kt
T

8 lines
146 B
Kotlin
Vendored

fun <T> doSomething(a: T) {}
fun foo(p: Int) {
<caret>if (p < 0 /* p < 0 */ || p > 100 /* too much */) {
doSomething("test")
}
}