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.
14 lines
204 B
Java
14 lines
204 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7196531
|
|
* @compile/fail/ref=DuplicateErrors.out -XDrawDiagnostics DuplicateErrors.java
|
|
*/
|
|
|
|
|
|
@interface Foo {}
|
|
|
|
@Foo
|
|
@Foo
|
|
@Foo
|
|
public class DuplicateErrors {
|
|
}
|