Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/stepping/stepOver/stepOverCatchClause.kt
T
2019-10-08 19:13:55 +09:00

17 lines
226 B
Kotlin
Vendored

package stepOverCatchClause
fun main(args: Array<String>) {
try {
bar()
}
catch(e: Exception) {
val a = e
}
}
fun bar() {
//Breakpoint!
throw IllegalStateException()
}
// STEP_OVER: 2