mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
14 lines
303 B
Java
14 lines
303 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4901271
|
|
* @summary <at>Target
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=DupTarget.out -XDrawDiagnostics DupTarget.java
|
|
*/
|
|
|
|
import static java.lang.annotation.ElementType.*;
|
|
|
|
@java.lang.annotation.Target({TYPE, FIELD, PACKAGE, FIELD})
|
|
@interface DupTarget {
|
|
}
|