2014-08-12 17:39:56 -07:00

13 lines
269 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4865660
* @summary implement "metadata" (attribute interfaces and program annotations)
* @author gafter
*
* @compile/fail/ref=Z15.out -XDrawDiagnostics Z15.java
*/
@interface An {
String a() default "foo".intern();
}