2014-08-15 11:02:14 -04:00

15 lines
306 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4865660 8054556
* @summary implement "metadata" (attribute interfaces and program annotations)
* @author gafter
*
* @compile/fail/ref=Z3.out -XDrawDiagnostics Z3.java
*/
enum Color { red, green, blue }
class Colored {
Color value() default Color.red;
}