langtools/test/tools/javac/annotations/neg/Z8.java
author sogoel
Tue, 12 Aug 2014 17:48:30 -0700
changeset 26097 4a16592140fa
parent 5520 86e4b9a9da40
permissions -rw-r--r--
8049130: Group 8d - golden files for annotations test in tools/java dir Reviewed-by: jjg

/*
 * @test /nodynamiccopyright/
 * @bug 4865660
 * @summary implement "metadata" (attribute interfaces and program annotations)
 * @author gafter
 *
 * @compile/fail/ref=Z8.out -XDrawDiagnostics  Z8.java
 */

@interface An {
    int x(int y);
}