1/*
2 * @test /nodynamiccopyright/
3 * @bug 4865660
4 * @summary implement "metadata" (attribute interfaces and program annotations)
5 * @author gafter
6 *
7 * @compile/fail/ref=Z11.out -XDrawDiagnostics  Z11.java
8 */
9
10class X {}
11
12@interface An {
13    X a();
14}
15