Joel Borggrén-Franck c3e43ab7d5 8005205: tests missing bugid for repeating annotation change
Reviewed-by: jjg, ssides
2013-03-12 11:16:30 +01:00

20 lines
411 B
Java

/**
* @test /nodynamiccopyright/
* @bug 7169362 8001114
* @author sogoel
* @summary ContainerAnnotation does not have FooContainer.class specified
* @compile/fail/ref=MissingContainer.out -XDrawDiagnostics MissingContainer.java
*/
import java.lang.annotation.Repeatable;
@Repeatable()
@interface Foo {}
@interface FooContainer {
Foo[] value();
}
@Foo @Foo
public class MissingContainer {}