7cb1497762
Reviewed-by: jjg
15 lines
306 B
Java
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;
|
|
}
|