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

8 lines
148 B
Kotlin
Vendored

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