Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/Delegation.java
2014-01-23 17:59:18 +04:00

17 lines
272 B
Java

class JavaClass {
void testMethod() {
Test test = new Test();
test.none();
try {
test.one();
}
catch (E1 e) {}
try {
test.two();
}
catch (E1 e) {}
catch (E2 e) {}
}
}