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

Wed, 14 Apr 2010 12:31:55 +0100

author
mcimadamore
date
Wed, 14 Apr 2010 12:31:55 +0100
changeset 537
9d9d08922405
child 914
ca32f2986301
permissions
-rw-r--r--

6939620: Switch to 'complex' diamond inference scheme
Summary: Implement new inference scheme for diamond operator that takes into account type of actual arguments supplied to constructor
Reviewed-by: jjg, darcy

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6939620
     4  *
     5  * @summary  Switch to 'complex' diamond inference scheme
     6  * @author mcimadamore
     7  * @compile/fail/ref=Neg11.out Neg11.java -XDrawDiagnostics
     8  *
     9  */
    11 class Neg11 {
    13     void test() {
    14         class Foo<X extends Number> { }
    15         Foo<?> f1 = new UndeclaredName<>(); //this is deliberate: aim is to test erroneous path
    16         Foo<?> f2 = new UndeclaredName<>() {}; //this is deliberate: aim is to test erroneous path
    17     }
    18 }

mercurial