test/langtools/tools/javac/generics/diamond/neg/Neg09a.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 40504 langtools/test/tools/javac/generics/diamond/neg/Neg09a.java@0a01f6710c84
child 51101 babe5786dea9
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse

/*
 * @test /nodynamiccopyright/
 * @bug 7020044 8062373
 *
 * @summary  Check that diamond is not allowed with anonymous inner class expressions at source < 9
 * @author Maurizio Cimadamore
 * @compile/fail/ref=Neg09a.out Neg09a.java -source 8 -XDrawDiagnostics
 *
 */

class Neg09a {
    class Member<X> {}

    void testSimple() {
        Member<?> m1 = new Member<>() {};
    }
}