blob: c326a1d486a110806a5714437e3601dc11b34ab8 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4901271
* @summary java.lang.annotation.Target
* @author gafter
*
* @compile/fail/ref=WrongTarget.out -XDrawDiagnostics WrongTarget.java
*/
import static java.lang.annotation.ElementType.*;
@java.lang.annotation.Target({FIELD})
@interface foo {
}
@foo
public class WrongTarget {
}