test/tools/javac/generics/diamond/neg/Neg08.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 2525
2eb010b6cb22
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 7020043 7020044
     4  *
     5  * @summary  Check that diamond is not allowed with non-generic class types
     6  * @author Rémi Forax
     7  * @compile/fail/ref=Neg08.out Neg08.java -XDrawDiagnostics
     8  *
     9  */
    11 class Neg08 {
    12    public static void main(String[] args) {
    13      String s = new String<>("foo");
    14    }
    15 }

mercurial