test/langtools/tools/javac/generics/inference/6278587/T6278587Neg.java
changeset 51047 860a3648c494
parent 47216 71c04702a3d5
equal deleted inserted replaced
51046:69634e97740c 51047:860a3648c494
     1 /*
     1 /*
     2  * @test    /nodynamiccopyright/
     2  * @test    /nodynamiccopyright/
     3  * @bug     6278587 8007464
     3  * @bug     6278587 8007464
     4  * @summary Inference broken for subtypes of subtypes of F-bounded types
     4  * @summary Inference broken for subtypes of subtypes of F-bounded types
     5  * @author  Peter von der Ah\u00e9
     5  * @author  Peter von der Ah\u00e9
     6  * @compile/fail/ref=T6278587Neg.out -XDrawDiagnostics -source 7 T6278587Neg.java
     6  * @compile/fail/ref=T6278587Neg.out -XDrawDiagnostics -source 7 -Xlint:-options T6278587Neg.java
     7  * @compile T6278587Neg.java
     7  * @compile T6278587Neg.java
     8  */
     8  */
     9 
     9 
    10 public abstract class T6278587Neg {
    10 public abstract class T6278587Neg {
    11     interface A<T extends A<T>> {}
    11     interface A<T extends A<T>> {}