Files
kotlin-fork/j2k/tests/testData/ast/tryStatement/emptyTryWithTwoCatchesWithEmptyFinally.java
T
Pavel V. Talanov 1570a3792b Converter tests:
Change test data files extension to "java"
2013-12-22 16:49:57 +04:00

2 lines
107 B
Java

//statement
try {} catch (Exception e) { println(1);} catch (IOException e) { println(0);} finally {}