T8057794.java revision 2645:2f8f2ae8a806
1/**
2 * @test    /nodynamiccopyright/
3 * @bug     8057794
4 * @summary The tree for TypeVar.class does not have a type set, which leads to an NPE when
5 *          checking if deferred attribution is needed
6 * @compile/fail/ref=T8057794.out -XDrawDiagnostics T8057794.java
7 */
8class T8057794<T> {
9    void t() {
10        System.out.println(T.class.getSimpleName());
11    }
12}
13