blob: 20f8ad25224ae614573dd220d8becf7213004dfe [file] [log] [blame]
/**
* @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 {}