test/tools/javac/generics/diamond/neg/Neg07.java

Mon, 21 Jan 2013 20:13:56 +0000

author
mcimadamore
date
Mon, 21 Jan 2013 20:13:56 +0000
changeset 1510
7873d37f5b37
parent 914
ca32f2986301
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8005244: Implement overload resolution as per latest spec EDR
Summary: Add support for stuck expressions and provisional applicability
Reviewed-by: jjg

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6939620 7020044
     4  *
     5  * @summary  Check that diamond works where LHS is supertype of RHS (1-ary constructor)
     6  * @author mcimadamore
     7  * @compile/fail/ref=Neg07.out Neg07.java -XDrawDiagnostics
     8  *
     9  */
    11 class Neg07 {
    12    static class SuperFoo<X> {}
    13    static class Foo<X extends Number> extends SuperFoo<X> {
    14        Foo(X x) {}
    15    }
    17    SuperFoo<String> sf1 = new Foo<>("");
    18 }

mercurial