/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/annotations/repeatingAnnotations/MissingDefaultCase2.java
20 строк
517 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/** * @test /nodynamiccopyright/ * @bug 7169362 * @author sogoel * @summary Missing default case for other method and return type is base annotation * @compile/fail/ref=MissingDefaultCase2.out -XDrawDiagnostics MissingDefaultCase2.java */ import java.lang.annotation.Repeatable; @Repeatable(FooContainer.class) @interface Foo {} @interface FooContainer { Foo[] value(); Foo other(); // missing default clause and return type is an annotation } @Foo @Foo public class MissingDefaultCase2 {}