Files
kotlin/idea/testData/debugger/smartStepInto/if.kt
Natalia Ukhorskaya e8d2ba197e Debugger: implement Smart Step Into
#KT-4639 Fixed
2014-03-21 16:08:01 +04:00

10 lines
100 B
Kotlin
Vendored

fun foo() {
<caret>if (f1()) {
f2()
}
}
fun f1() = true
fun f2() {}
// EXISTS: f1()