Jan Lahoda d103a19b3a 8078561: Error message should be generated once when -source 6 is specified
Code to avoid duplicated errors about features not supported in the current source level moved to Log

Reviewed-by: jjg
2016-08-16 16:43:00 +02:00

18 lines
384 B
Java

/*
* @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<>() {};
}
}