langtools/test/tools/javac/generics/GenericThrowable.java
author sogoel
Fri, 15 May 2015 16:53:42 -0700
changeset 30721 1024d425d97e
parent 30719 91834c070ba5
permissions -rw-r--r--
8074425: Group 13b: golden files for tests in tools/javac/generics dir Reviewed-by: jjg, darcy, mcimadamore

/*
 * @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 {
}