Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/DefaultArgs.java
2015-04-13 15:26:20 +02:00

26 lines
382 B
Java
Vendored

package test;
class JavaClass {
void testMethod(One instance) {
try {
new One(1);
}
catch (E1 e) {}
try {
new One();
}
catch (E1 e) {}
try {
TestPackage.one(1);
}
catch (E1 e) {}
try {
TestPackage.one();
}
catch (E1 e) {}
}
}