/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/lambda/MostSpecific28.java
19 строк
504 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 8143852 * @summary Test that functional interface method parameter types are equal, even for an explicit lambda * @compile/fail/ref=MostSpecific28.out -XDrawDiagnostics MostSpecific28.java */ class MostSpecific28 { interface Pred<T> { boolean test(T arg); } interface Fun<T,R> { R apply(T arg); } static void m1(Pred<? super Integer> f) {} static void m1(Fun<Number, Boolean> f) {} void test() { m1((Number n) -> true); } }