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

10 lines
173 B
Plaintext
Vendored

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