Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
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 {}
|