1/*
2 * @test /nodynamiccopyright/
3 * @bug 4738171
4 * @summary generics: problem with equivalence of generic types
5 * @author gafter
6 *
7 * @compile/fail/ref=T4738171.out -XDrawDiagnostics   T4738171.java
8 */
9
10interface If<T> {
11    final If<T> C0 = null;
12}
13