2010-04-14 12:31:55 +01:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2011-03-07 14:31:50 +00:00
|
|
|
* @bug 7020044
|
2010-04-14 12:31:55 +01:00
|
|
|
*
|
2011-03-07 14:31:50 +00:00
|
|
|
* @summary Check that diamond is not allowed with anonymous inner class expressions
|
|
|
|
* @author Maurizio Cimadamore
|
2010-04-14 12:31:55 +01:00
|
|
|
* @compile/fail/ref=Neg09.out Neg09.java -XDrawDiagnostics
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Neg09 {
|
2011-03-07 14:31:50 +00:00
|
|
|
class Member<X> {}
|
2010-04-14 12:31:55 +01:00
|
|
|
|
2011-03-07 14:31:50 +00:00
|
|
|
static class Nested<X> {}
|
|
|
|
|
|
|
|
void testSimple() {
|
|
|
|
Member<?> m1 = new Member<>() {};
|
|
|
|
Nested<?> m2 = new Nested<>() {};
|
|
|
|
}
|
|
|
|
|
|
|
|
void testQualified() {
|
|
|
|
Member<?> m1 = this.new Member<>() {};
|
|
|
|
Nested<?> m2 = new Neg09.Nested<>() {};
|
|
|
|
}
|
2010-04-14 12:31:55 +01:00
|
|
|
}
|