Files
kotlin-fork/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ThrowsOnGenericMethod.java.as33
T
2019-02-07 11:25:25 +03:00

9 lines
208 B
Plaintext
Vendored

package test;
import foo.A;
public class ThrowsOnGenericMethod {
public static void main(String[] args) {
new A().<error descr="Unhandled exception: java.io.IOException">foo("");</error>
}
}