Files
kotlin-fork/idea/testData/intentions/splitIf/nestedIf.kt
T
2015-05-27 16:15:51 +03:00

12 lines
184 B
Kotlin
Vendored

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