1/*
2 * @test /nodynamiccopyright/
3 * @bug 4984157
4 * @summary java.lang.Throwable inheritance in parameterized type
5 * @author gafter
6 *
7 * @compile/fail/ref=GenericThrowable.out -XDrawDiagnostics   GenericThrowable.java
8 */
9
10class GenericThrowable<T> extends NullPointerException {
11}
12