jdk-24/test/langtools/tools/javac/annotations/repeatingAnnotations/InheritedContainerAnno.java
2017-09-12 19:03:39 +02:00

23 lines
476 B
Java

/**
* @test /nodynamiccopyright/
* @bug 7169362
* @author sogoel
* @summary Base anno is Inherited but Container anno is not
* @compile/fail/ref=InheritedContainerAnno.out -XDrawDiagnostics InheritedContainerAnno.java
*/
import java.lang.annotation.Repeatable;
import java.lang.annotation.Inherited;
@Inherited
@Repeatable(FooContainer.class)
@interface Foo {}
@interface FooContainer{
Foo[] value();
}
@Foo @Foo
public class InheritedContainerAnno {}