/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/DefiniteAssignment/UncaughtException.java
24 строки
467 B
Archie L. Cobbs
8163229: several regression tests have a main method that is never executed
17 янв 2023, 07:43
17 янв 2023, 07:43
382fe51
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 4053998 * @summary Compiler used to not notice the uncaught checked exception. * @author turnidge * * @compile/fail/ref=UncaughtException.out -XDrawDiagnostics UncaughtException.java */ interface I { void throwCheckedException (); } class A { public void throwCheckedException () throws Throwable { throw new Throwable(); } } class B extends A implements I { } public class UncaughtException { }