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
294 B
Java
14 lines
294 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5009601
|
|
* @summary verify specialized enum classes can't be abstract
|
|
*
|
|
* @compile/fail/ref=FauxSpecialEnum2.out -XDrawDiagnostics FauxSpecialEnum2.java
|
|
*/
|
|
|
|
public enum FauxSpecialEnum2 {
|
|
XRAY,
|
|
GAMMA {
|
|
abstract void test();
|
|
};
|
|
}
|