mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
12 lines
217 B
Java
12 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 {}
|