IDEA-155716 Statically imported method should be higher in the completion list

This commit is contained in:
peter
2016-05-13 17:15:10 +02:00
parent 4f0ea3d8bf
commit e68d6eac26
3 changed files with 33 additions and 2 deletions
@@ -0,0 +1,8 @@
import static ContainerUtil.newHashSet;
public class TestClass {
public static void main(String[] args) {
newHashSet();
newHashSet<caret>
}
}