/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/overload/T5090220.java
18 строк
441 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 5090220 * @summary Autoboxing applied when calculating most-specific method * @compile/fail/ref=T5090220.out -XDrawDiagnostics T5090220.java */ class T5090220 { static void foo(int i1, Integer i2) { System.out.println("Integer"); } static void foo(Integer i1, double d) { System.out.println("double"); } public static void meth() { foo(5, 5); } }