blob: 9210b2f5aff04820b00ca9c4456a2394a722a2a0 [file] [log] [blame]
/*
* @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;
}