jdk-24/langtools/test/tools/javac/generics/GenericThrowable.java
2015-05-15 09:53:08 -07:00

12 lines
284 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4984157
* @summary java.lang.Throwable inheritance in parameterized type
* @author gafter
*
* @compile/fail/ref=GenericThrowable.out -XDrawDiagnostics GenericThrowable.java
*/
class GenericThrowable<T> extends NullPointerException {
}