mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
IDEA-83714 Non-existent class in generic arguments trips the smart auto-completion component
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
import java.util.HashMap;
|
||||
|
||||
class Test {
|
||||
void test() {
|
||||
java.util.Map<String, ClassThatDoesNotExistYet> map = new HashMap<String, ClassThatDoesNotExistYet>(<caret>);
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Test {
|
||||
void test() {
|
||||
java.util.Map<String, ClassThatDoesNotExistYet> map = new HashM<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user