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

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

mercurial