Files
kotlin-fork/idea/testData/intentions/splitIf/keepComments/withOR.kt
T
2015-05-27 16:15:53 +03:00

8 lines
145 B
Kotlin
Vendored

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