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

Mon, 21 Jan 2013 20:13:56 +0000

author
mcimadamore
date
Mon, 21 Jan 2013 20:13:56 +0000
changeset 1510
7873d37f5b37
parent 1492
df694c775e8a
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8005244: Implement overload resolution as per latest spec EDR
Summary: Add support for stuck expressions and provisional applicability
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 Missing default case for other method and return type is base annotation
jjg@1386 6 * @compile/fail/ref=MissingDefaultCase2.out -XDrawDiagnostics MissingDefaultCase2.java
jjg@1386 7 */
jjg@1386 8
jjg@1492 9 import java.lang.annotation.Repeatable;
jjg@1386 10
jjg@1492 11 @Repeatable(FooContainer.class)
jjg@1386 12 @interface Foo {}
jjg@1386 13
jjg@1386 14 @interface FooContainer {
jjg@1386 15 Foo[] value();
jjg@1386 16 Foo other(); // missing default clause and return type is an annotation
jjg@1386 17 }
jjg@1386 18
jjg@1386 19 @Foo @Foo
jjg@1386 20 public class MissingDefaultCase2 {}

mercurial