Files
kotlin-fork/idea/testData/intentions/splitIf/splitIfTwoOperatorsFirst.kt.after
T

10 lines
144 B
Plaintext

fun foo() {
val a = true
val b = false
val c = true
if (a) {
if (b && c) {
println("test")
}
}
}