/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/annotations/DeprecationWarningTest.java
15 строк
502 B
Vicente Romero
8293519: deprecation warnings should be emitted for uses of annotation methods inside other annotations
31 янв 2023, 21:20
31 янв 2023, 21:20
6beadbb
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 8293519 * @summary deprecation warnings should be emitted for uses of annotation methods inside other annotations * @compile/fail/ref=DeprecationWarningTest.out -deprecation -Werror -XDrawDiagnostics DeprecationWarningTest.java */ // both classes can't be inside the same outermost class or the compiler wont emit the warning as `9.6.4.6 @Deprecated` mandates @interface Anno { @Deprecated boolean b() default false; } @Anno(b = true) class Foo {}