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

7 lines
105 B
Kotlin
Vendored

fun foo(i :Int) {}
fun test(i: Int, b: Boolean) {
if (i == 1) {<caret>
if (b) foo(1)
}
}