mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 17:07:05 +07:00
method ref completion: allow non static methods (IDEA-92705)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import java.util.*;
|
||||
|
||||
class Test {
|
||||
void aaa(Test p) { return 1; }
|
||||
void test() {
|
||||
Comparator<Test> r2 = Test::<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user