IDEA-182822 Raw type completion options are suggested when actual expression type is inferred

This commit is contained in:
Tagir Valeev
2017-11-29 17:59:35 +07:00
parent 58cf9d740c
commit 8673ad67aa
6 changed files with 101 additions and 39 deletions
@@ -0,0 +1,8 @@
import java.util.*;
class Foo {
void test() {
Set<String> set = new TreeSet<>();
set.ceil<caret>
}
}
@@ -0,0 +1,8 @@
import java.util.*;
class Foo {
void test() {
Set<String> set = new TreeSet<>();
((TreeSet<String>) set).ceiling()
}
}