mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
18 lines
412 B
Java
18 lines
412 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7169362
|
|
* @author sogoel
|
|
* @summary Base annotation specify itself as ContainerAnnotation
|
|
* @compile/fail/ref=BaseAnnoAsContainerAnno.out -XDrawDiagnostics BaseAnnoAsContainerAnno.java
|
|
*/
|
|
|
|
import java.lang.annotation.Repeatable;
|
|
|
|
@Repeatable(Foo.class)
|
|
@interface Foo {
|
|
Foo[] value() default {};
|
|
}
|
|
|
|
@Foo() @Foo()
|
|
public class BaseAnnoAsContainerAnno {}
|
|
|