/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/lambda/8023549/T8023549.java
27 строк
686 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 8023549 * @summary Compiler emitting spurious errors when constructor reference type is inferred and explicit type arguments are supplied * @compile/fail/ref=T8023549.out -XDrawDiagnostics T8023549.java */ public class T8023549 { static class Foo<X> { } interface Supplier<X> { X make(); } interface ExtSupplier<X> extends Supplier<X> { } void m1(Supplier<Foo<String>> sfs) { } void m2(Supplier<Foo<String>> sfs) { } void m2(ExtSupplier<Foo<Integer>> sfs) { } void test() { Supplier<Foo<String>> sfs = Foo::<Number>new; m1(Foo::<Number>new); m2(Foo::<Number>new); } }