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

13 lines
196 B
Plaintext
Vendored

fun doSomething<T>(a: T) {}
fun foo() {
val a = true
val b = false
val c = true
if (a /*a*/ && b /*b*/) {
if (c /*c*/) {
doSomething("test")
}
}
}