Files
kotlin-fork/idea/testData/joinLines/nestedIfs/ComplexCondition2.kt
T
Valentin Kipyatkov 3db51cfcd8 KT-5927 Join Lines could merge nested if's
#KT-5927 Fixed
2014-12-24 14:19:26 +03:00

6 lines
71 B
Kotlin
Vendored

fun foo() {
<caret>if (a && b) {
if (c || d) foo()
}
}