3789983e89
Reviewed-by: darcy, ihse
13 lines
254 B
Java
13 lines
254 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4738171
|
|
* @summary generics: problem with equivalence of generic types
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=T4738171.out -XDrawDiagnostics T4738171.java
|
|
*/
|
|
|
|
interface If<T> {
|
|
final If<T> C0 = null;
|
|
}
|