langtools/test/tools/javac/generics/diamond/neg/Neg09c.java
author jlahoda
Tue, 16 Aug 2016 16:43:00 +0200
changeset 40504 0a01f6710c84
parent 29776 langtools/test/tools/javac/generics/diamond/neg/Neg09.java@984a79b71cfe
permissions -rw-r--r--
8078561: Error message should be generated once when -source 6 is specified Summary: Code to avoid duplicated errors about features not supported in the current source level moved to Log Reviewed-by: jjg

/*
 * @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=Neg09c.out Neg09c.java -source 8 -XDrawDiagnostics
 *
 */

class Neg09c {
    class Member<X> {}

    void testQualified() {
        Member<?> m1 = this.new Member<>() {};
    }
}