Jonathan Gibbons a920af233a 8303689: javac -Xlint could/should report on "dangling" doc comments
Reviewed-by: vromero, ihse, prr
2024-04-26 19:47:06 +00:00

22 lines
422 B
Java

/*
* @test /nodynamiccopyright/
* @bug 6199153
* @summary Generic throws and overriding
* @author mcimadamore
* @compile/fail/ref=T6199153.out -Xlint -Werror -XDrawDiagnostics T6199153.java
*/
import java.io.IOException;
class T6199153 {
static class A {
public <T extends IOException> void m() throws T {}
}
static class B extends A {
public void m() throws IOException {}
}
}