d103a19b3a
Code to avoid duplicated errors about features not supported in the current source level moved to Log Reviewed-by: jjg
18 lines
392 B
Java
18 lines
392 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=Neg09c.out Neg09c.java -source 8 -XDrawDiagnostics
|
|
*
|
|
*/
|
|
|
|
class Neg09c {
|
|
class Member<X> {}
|
|
|
|
void testQualified() {
|
|
Member<?> m1 = this.new Member<>() {};
|
|
}
|
|
}
|