// TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND_WITHOUT_CHECK: JS tailrec fun test(go: Boolean) : Unit { if (!go) return try { test(false) } catch (any : Exception) { test(false) } finally { test(false) } } fun box(): String { test(true) return "OK" }