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