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.
20 lines
384 B
Java
20 lines
384 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8025537 5028491
|
|
* @author sogoel
|
|
* @summary enum constants should precede other enum members
|
|
* @compile/fail/ref=EnumMembersOrder.out -XDrawDiagnostics EnumMembersOrder.java
|
|
*/
|
|
|
|
enum Days {
|
|
|
|
Days(String d) { day = d; } // constructor
|
|
|
|
// enum constants
|
|
WEEKEND("SAT"),
|
|
WEEKDAY("MON");
|
|
|
|
private String day;
|
|
|
|
}
|
|
|