1/*
2 * @test /nodynamiccopyright/
3 * @bug 4695348
4 * @summary generics: compiler allows ref to type bounds in static members
5 * @author gafter
6 *
7 * @compile/fail/ref=T4695348.out -XDrawDiagnostics  T4695348.java
8 */
9
10class T4695348<T> {
11    static T x = null;
12}
13