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

changeset 0
959103a6100f
child 2525
2eb010b6cb22
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/tools/javac/annotations/repeatingAnnotations/MissingDefaultCase2.java	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,20 @@
     1.4 +/**
     1.5 + * @test    /nodynamiccopyright/
     1.6 + * @bug     7169362
     1.7 + * @author  sogoel
     1.8 + * @summary Missing default case for other method and return type is base annotation
     1.9 + * @compile/fail/ref=MissingDefaultCase2.out -XDrawDiagnostics MissingDefaultCase2.java
    1.10 + */
    1.11 +
    1.12 +import java.lang.annotation.Repeatable;
    1.13 +
    1.14 +@Repeatable(FooContainer.class)
    1.15 +@interface Foo {}
    1.16 +
    1.17 +@interface FooContainer {
    1.18 +    Foo[] value();
    1.19 +    Foo other();  // missing default clause and return type is an annotation
    1.20 +}
    1.21 +
    1.22 +@Foo @Foo
    1.23 +public class MissingDefaultCase2 {}

mercurial