Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/stepping/stepOver/kt34905.kt
T
2020-02-14 17:35:19 +09:00

18 lines
226 B
Kotlin
Vendored

package test
fun main(args: Array<String>) {
lookAtMe {
val c = "c"
}
}
inline fun lookAtMe(f: String.() -> Unit) {
val a = "a"
//Breakpoint!
"123".
f()
val b = "b"
}
// STEP_OVER: 3