mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
method refs: missed qualifier substitution for return type (IDEA-140539)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.function.Function;
|
||||
|
||||
class Test {
|
||||
|
||||
private void foo(final Function<String, String> steps) {
|
||||
map(steps::compose);
|
||||
}
|
||||
|
||||
<U> void map(Function<Function<String, String>, U> mapper) {}
|
||||
}
|
||||
Reference in New Issue
Block a user