/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/T6245591.java
19 строк
525 B
Archie Cobbs
8347141: Several javac tests compile with an unnecessary -Xlint:-path flag
09 янв 2025, 17:46
09 янв 2025, 17:46
cb9a98b
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 6245591 * @compile/ref=T6245591.out -XDrawDiagnostics -Xlint:all T6245591.java */ enum Season { /** @deprecated */ WINTER, SPRING, SUMMER, FALL; } enum Season1 { WINTER, SPRING, SUMMER, FALL; } class T6245591 { void m() { Season s1 = Season.WINTER; // ref to WINTER should be deprecated Season1 s2 = Season1.WINTER; // nothing here should be deprecated; // @deprecated should not leak out of Season } }