Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/evaluation/singleBreakpoint/kt28087.kt
T
2019-10-08 19:13:55 +09:00

16 lines
295 B
Kotlin
Vendored

package kt28087
fun main() {
"a".indexed { index, c ->
//Breakpoint!
val a = 5
}
}
private inline fun CharSequence.indexed(action: (index: Int, Char) -> Unit): Unit {
var index = 0
for (item in this) action(index++, item)
}
// EXPRESSION: index
// RESULT: 0: I