/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/annotations/repeatingAnnotations/BaseAnnoAsContainerAnno.java
17 строк
408 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 * @author sogoel * @summary Base annotation specify itself as ContainerAnnotation * @compile/fail/ref=BaseAnnoAsContainerAnno.out -XDrawDiagnostics BaseAnnoAsContainerAnno.java */ import java.lang.annotation.Repeatable; @Repeatable(Foo.class) @interface Foo { Foo[] value() default {}; } @Foo @Foo public class BaseAnnoAsContainerAnno {}