method ref completion: allow non static methods (IDEA-92705)

This commit is contained in:
anna
2012-10-11 12:42:09 +02:00
parent c58a833be1
commit 451d88906b
5 changed files with 20 additions and 2 deletions
@@ -0,0 +1,8 @@
import java.util.*;
class Test {
void aaa(Test p) { return 1; }
void test() {
Comparator<Test> r2 = Test::<caret>
}
}