testdata for IDEA-70890

This commit is contained in:
anna
2013-05-03 13:30:03 +02:00
parent f4e45c7219
commit 8c3496ee2d
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,10 @@
import java.util.*;
public class Test {
static <E extends Exception, T> void foo(List<T> l, Class<E> ec) throws E {
}
public static void main(String[] s) {
foo(new ArrayList(), RuntimeException.class); //IDEA says we have an unhandled exception here
}
}