/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/enum/forwardRef/T6425594.java
13 строк
353 B
Magnus Ihse Bursie
8354968: Replace unicode sequences in comment text with UTF-8 characters
14 май 2025, 09:42
14 май 2025, 09:42
a3e094e
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 6424491 * @summary javac accepts illegal forward references * @author Peter von der Ahé * @compile/fail/ref=T6425594.out -XDrawDiagnostics -XDuseBeforeDeclarationWarning T6425594.java */ public class T6425594 { static int x = T6425594.x; static final int y = z; static final int z = 0; }