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

14 lines
170 B
Kotlin
Vendored

package test
fun main() {
runBlock {
//Breakpoint!
throw Exception()
}
}
inline fun runBlock(block: () -> Unit) {
block()
}
// STEP_OVER: 4