/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/lambda/methodReference/MethodRefIntColonColonNewTest.java
20 строк
522 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 8139245 * @summary compiler crashes with exception on int:new method reference and generic method inference * @compile/fail/ref=MethodRefIntColonColonNewTest.out -XDrawDiagnostics MethodRefIntColonColonNewTest.java */ public class MethodRefIntColonColonNewTest { interface SAM<T> { T m(T s); } static <T> SAM<T> infmethod(SAM<T> t) { return t; } public static void meth() { SAM<Object> s = infmethod(int::new); s.m(); } }