blob: 0aa44d0b1b4078fc07e43f5ff4f0f170bb08724c [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4865660
* @summary implement "metadata" (attribute interfaces and program annotations)
* @author gafter
*
* @compile/fail/ref=Z4.out -XDrawDiagnostics Z4.java
*/
enum Color { red, green, blue }
@interface Colored {
Color value() default Color.teal;
}