2014-08-28 23:42:16 -07:00

13 lines
217 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4901265
* @summary JSR175 (3): don't allow repeated annotations
* @author gafter
*
* @compile/fail/ref=Dup.out -XDrawDiagnostics Dup.java
*/
@Dup
@Dup
@interface Dup {}