Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
11 lines
284 B
Java
11 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 {
|
|
}
|