jdk-24/langtools/test/tools/javac/generics/T4738171.java
2015-05-15 09:53:08 -07:00

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;
}