Files
kotlin-fork/idea/testData/intentions/removeBraces/ifInsideIf3.kt
T
2018-03-22 09:56:22 +03:00

11 lines
177 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(i :Int) {}
fun test(i: Int, b: Boolean) {
if (i == 1) {<caret>
if (b) foo(1)
} else if (i == 2) {
if (b) foo(2)
}
}