DaniilStepanov

Results 4 comments of DaniilStepanov

One more test for try/catch/finally: ```kotlin fun test1() : String { var s = ""; try { try { s += "Try"; throw Exception() } catch (x : Exception) {...

More: ```kotlin fun unsupportedEx() { if (true) throw UnsupportedOperationException() } fun runtimeEx() { if (true) throw RuntimeException() } fun test1WithFinally() : String { var s = ""; try { try...

Try this test: ```kotlin fun box(): String { var x = "" run { x = "OK" } return x } ```