mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
method reference overloads: second search should provide actual parameter types with 1 offset (IDEA-200218)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import java.util.stream.IntStream;
|
||||
|
||||
class MyTest {
|
||||
|
||||
{
|
||||
StringBuilder collected =
|
||||
IntStream.range(0, 10)
|
||||
.collect(StringBuilder::new, StringBuilder::app<caret>end, StringBuilder::append);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user