Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
13 lines
285 B
Java
13 lines
285 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5009601
|
|
* @summary enum's cannot be explicitly declared final even if they are
|
|
* @compile/fail/ref=ExplicitlyFinalEnum1.out -XDrawDiagnostics ExplicitlyFinalEnum1.java
|
|
*/
|
|
|
|
final enum ExplicitlyFinalEnum1 {
|
|
FE,
|
|
FI,
|
|
FO,
|
|
FUM;
|
|
}
|