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

Wed, 27 Jul 2011 19:01:08 +0100

author
mcimadamore
date
Wed, 27 Jul 2011 19:01:08 +0100
changeset 1060
d5f33267a06d
parent 914
ca32f2986301
child 1510
7873d37f5b37
permissions
-rw-r--r--

7046778: Project Coin: problem with diamond and member inner classes
Summary: Diamond inference generates spurious error messages when target type is a member inner class
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