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

8 lines
147 B
Kotlin
Vendored

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