blob: 4feb79e9d2514144f269c66d003dacbfa565536e [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 5057445
* @summary javac allows catching type parameter
* @author gafter
*
* @compile/fail/ref=CatchTyparam.out -XDrawDiagnostics CatchTyparam.java
*/
class J {
<T extends Error, U extends Error> void foo() {
try {
int i = 12;
} catch (T ex) {
} catch (U ex) {
}
}
}