/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/assert/DU1.java
18 строк
359 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 4468510 * @summary Check correct DU computation for assertions. * @author gafter * @compile/fail/ref=DU1.out -XDrawDiagnostics DU1.java */ class DU1 { void f1() { final int i; try { assert false : i=3; } catch (AssertionError ae) { } i=4; // error } }