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.
14 lines
347 B
Java
14 lines
347 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5009601
|
|
* @summary enum's cannot be explicitly declared abstract even if they are abstract
|
|
* @compile/fail/ref=ExplicitlyAbstractEnum2.out -XDrawDiagnostics ExplicitlyAbstractEnum2.java
|
|
*/
|
|
|
|
abstract enum ExplicitlyAbstractEnum2 {
|
|
FE {
|
|
void foo() {return;}
|
|
};
|
|
|
|
abstract void foo();
|
|
}
|