// WITH_RUNTIME fun test() { var res: String? = null res = try { try { "success" } catch (e: Exception) { TODO() } } catch (e: Exception) { try { TODO() } catch (e: Exception) { "failure" } } }