mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 19:28:23 +07:00
support captured types in incomplete overloaded lambda completion (IDEA-155188)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import java.util.stream.*;
|
||||
import java.util.*;
|
||||
|
||||
class Foo {
|
||||
void main(Stream<? super String> stream) {
|
||||
stream.collect(Collectors.toMap(o -> o.sub<caret>))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user