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

21 lines
319 B
Java

class JavaClass {
void testMethod() {
new None();
try {
new One();
}
catch (E1 e) {}
try {
new OneWithParam(1);
}
catch (E1 e) {}
try {
new Two();
}
catch (E1 e) {}
catch (E2 e) {}
}
}