langtools/test/tools/javac/generics/inference/6278587/T6278587Neg.java
changeset 15717 ab55670d2e62
parent 5520 86e4b9a9da40
child 30718 391eff0516a6
equal deleted inserted replaced
15716:d1f59adb0d83 15717:ab55670d2e62
     1 /*
     1 /*
     2  * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 /*
    24 /*
    25  * @test
    25  * @test
    26  * @bug     6278587
    26  * @bug     6278587 8007464
    27  * @summary Inference broken for subtypes of subtypes of F-bounded types
    27  * @summary Inference broken for subtypes of subtypes of F-bounded types
    28  * @author  Peter von der Ah\u00e9
    28  * @author  Peter von der Ah\u00e9
    29  * @compile/fail T6278587Neg.java
    29  * @compile/fail -source 7 T6278587Neg.java
       
    30  * @compile T6278587Neg.java
    30  */
    31  */
    31 
    32 
    32 public abstract class T6278587Neg {
    33 public abstract class T6278587Neg {
    33     interface A<T extends A<T>> {}
    34     interface A<T extends A<T>> {}
    34     interface B extends A<B> {}
    35     interface B extends A<B> {}