IDEA-83714 Non-existent class in generic arguments trips the smart auto-completion component

This commit is contained in:
peter
2012-04-25 23:44:37 +02:00
parent 39b1487491
commit a58b97b936
4 changed files with 18 additions and 0 deletions
@@ -0,0 +1,7 @@
import java.util.HashMap;
class Test {
void test() {
java.util.Map<String, ClassThatDoesNotExistYet> map = new HashMap<String, ClassThatDoesNotExistYet>(<caret>);
}
}
@@ -0,0 +1,5 @@
class Test {
void test() {
java.util.Map<String, ClassThatDoesNotExistYet> map = new HashM<caret>
}
}