test/tools/javac/annotations/repeatingAnnotations/MissingDefaultCase1.java

Fri, 02 Nov 2012 14:35:57 -0700

author
jjg
date
Fri, 02 Nov 2012 14:35:57 -0700
changeset 1386
bf76f4190ef8
child 1445
376d6c1b49e5
permissions
-rw-r--r--

7169362: JDK8: Write compiler tests for repeating annotations for JDK8
Reviewed-by: darcy, jjg
Contributed-by: sonali.goel@oracle.com

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

mercurial