2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-07-07 19:36:45 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 6424491
|
|
|
|
* @summary Cannot initialise nested enums
|
|
|
|
* @author Peter von der Ah\u00e9
|
2014-07-07 19:36:45 +00:00
|
|
|
* @compile/fail/ref=TestEnum6.out -XDrawDiagnostics TestEnum6.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public enum TestEnum6 {
|
|
|
|
AAA(TestEnum6.AAA);
|
|
|
|
TestEnum6(TestEnum6 e) {
|
|
|
|
}
|
|
|
|
}
|