mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
IDEA-182822 Raw type completion options are suggested when actual expression type is inferred
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user