1/**
2 * @test    /nodynamiccopyright/
3 * @bug     7169362 8001114
4 * @author  sogoel
5 * @summary Default case not specified for other methods in container annotation
6 * @compile/fail/ref=MissingDefaultCase1.out -XDrawDiagnostics MissingDefaultCase1.java
7 */
8
9import java.lang.annotation.Repeatable;
10
11@Repeatable(FooContainer.class)
12@interface Foo {}
13
14@interface FooContainer {
15    Foo[] value();
16    String other();  // missing default clause
17}
18
19@Foo @Foo
20public class MissingDefaultCase1 {}
21