mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
12 lines
254 B
Java
12 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;
|
|
}
|