jdk-24/test/langtools/tools/javac/generics/GenericThrowable.java

12 lines
284 B
Java
Raw Normal View History

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