Files
openide/java/java-tests/testData/codeInsight/completion/normal/MethodReferenceNoStatic.java
Peter Gromov b9525d143e java completion: sort/filter suggestions after :: by their matching to the expected type (IDEA-166673)
GitOrigin-RevId: adaefc912e115826280976b23adee38483ca1f71
2020-06-17 17:01:52 +03:00

9 lines
138 B
Java

import java.util.*;
class Test {
int aaa(Test p) { return 1; }
void test() {
Comparator<Test> r2 = Test::<caret>
}
}