/
githubmirror
/
jdk11u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk11u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/T6882235.java
13 строк
360 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 6882235 * @summary invalid exponent causes silent javac crash * * @compile/fail/ref=T6882235.out -XDrawDiagnostics T6882235.java */ class T6882235 { int i = ; // invalid expression float f = 0e*; // invalid exponent, should not crash compiler int j = ; // invalid expression }