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

changeset 1386
bf76f4190ef8
child 1492
df694c775e8a
equal deleted inserted replaced
1385:75c936d14c6a 1386:bf76f4190ef8
1 /**
2 * @test /nodynamiccopyright/
3 * @bug 7169362
4 * @author sogoel
5 * @summary Wrong return type for value() in ContainerAnnotation
6 * @compile/fail/ref=WrongReturnTypeForValue.out -XDrawDiagnostics WrongReturnTypeForValue.java
7 */
8
9 import java.lang.annotation.ContainedBy;
10 import java.lang.annotation.ContainerFor;
11
12 @ContainedBy(FooContainer.class)
13 @interface Foo {
14 int getNumbers();
15 }
16
17 @ContainerFor(Foo.class)
18 @interface FooContainer{
19 Foo value(); // wrong return type
20 }
21
22 @Foo @Foo
23 public class WrongReturnTypeForValue {}

mercurial