mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-29 20:48:29 +00:00
15 lines
204 B
Java
15 lines
204 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7196531
|
|
* @compile/fail/ref=DuplicateErrors.out -XDrawDiagnostics DuplicateErrors.java
|
|
*/
|
|
|
|
|
|
@interface Foo {}
|
|
|
|
@Foo
|
|
@Foo
|
|
@Foo
|
|
public class DuplicateErrors {
|
|
}
|