Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/GenericSubstitution.java
2014-03-19 23:24:27 +04:00

11 lines
171 B
Java
Vendored

package test;
class JavaClass {
public static void main(String[] args) {
try {
new Derived().one(null);
}
catch (E1 e) {}
}
}