15 lines
306 B
Java
Raw Normal View History

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