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

Sat, 17 Nov 2012 19:01:03 +0000

author
mcimadamore
date
Sat, 17 Nov 2012 19:01:03 +0000
changeset 1415
01c9d4161882
parent 1386
bf76f4190ef8
child 1492
df694c775e8a
permissions
-rw-r--r--

8003280: Add lambda tests
Summary: Turn on lambda expression, method reference and default method support
Reviewed-by: jjg

jjg@1386 1 /**
jjg@1386 2 * @test /nodynamiccopyright/
jjg@1386 3 * @bug 7169362
jjg@1386 4 * @author sogoel
jjg@1386 5 * @summary Base anno is Inherited but Container anno is not
jjg@1386 6 * @compile/fail/ref=InheritedContainerAnno.out -XDrawDiagnostics InheritedContainerAnno.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 import java.lang.annotation.Inherited;
jjg@1386 12
jjg@1386 13 @Inherited
jjg@1386 14 @ContainedBy(FooContainer.class)
jjg@1386 15 @interface Foo {}
jjg@1386 16
jjg@1386 17 @ContainerFor(Foo.class)
jjg@1386 18 @interface FooContainer{
jjg@1386 19 Foo[] value();
jjg@1386 20 }
jjg@1386 21
jjg@1386 22 @Foo @Foo
jjg@1386 23 public class InheritedContainerAnno {}
jjg@1386 24

mercurial