/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/DuplicateClass.java
21 строка
523 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 4531500 * @summary Cascade of problems from duplicate class can cause compiler crash. * @author gafter * * @compile/fail/ref=DuplicateClass.out -XDrawDiagnostics DuplicateClass.java */ /** * Compiling this translation unit should fail; there is, after all, a * duplicate class. Nonetheless, the compiler should not crash while * processing it. */ public class DuplicateClass { protected Object clone() { super.clone(); } } public class DuplicateClass {}