mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
22 lines
476 B
Java
22 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 {}
|
|
|