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

Mon, 07 Mar 2011 14:31:50 +0000

author
mcimadamore
date
Mon, 07 Mar 2011 14:31:50 +0000
changeset 914
ca32f2986301
parent 537
9d9d08922405
child 1510
7873d37f5b37
permissions
-rw-r--r--

7020044: Project Coin: diamond erroneous allowed on some anonymous inner classes
Summary: Disallow diamond on anonymous innner class creation expression (as per JSR 334's EDR)
Reviewed-by: jjg

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6939620 7020044
     4  *
     5  * @summary  Check that 'complex' diamond can infer type that is too specific
     6  * @author mcimadamore
     7  * @compile/fail/ref=Neg10.out Neg10.java -XDrawDiagnostics
     8  *
     9  */
    11 class Neg10 {
    12     static class Foo<X> {
    13         Foo(X x) {}
    14     }
    16     Foo<Number> fw = new Foo<>(1);
    17 }

mercurial