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