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