jdk-24/test/langtools/tools/javac/generics/T4738171.java
2017-09-12 19:03:39 +02: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;
}