/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/annotations/repeatingAnnotations/MissingContainer.java
19 строк
409 B
Liam Miller-Cushon
8214902: Pretty-printing marker annotations add unnecessary parenthesis
05 дек 2018, 22:31
05 дек 2018, 22:31
7f365ff
Код
Авторство
О чём код?
/** * @test /nodynamiccopyright/ * @bug 7169362 8001114 * @author sogoel * @summary ContainerAnnotation does not have FooContainer.class specified * @compile/fail/ref=MissingContainer.out -XDrawDiagnostics MissingContainer.java */ import java.lang.annotation.Repeatable; @Repeatable @interface Foo {} @interface FooContainer { Foo[] value(); } @Foo @Foo public class MissingContainer {}