KT-2424 Invoking completion adds unnecessary FQ name
#KT-2424 Obsolete
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
// KT-2424 Invoking completion adds unnecessary FQ name
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
throw IllegalAccessExceptio<caret>() //Press Ctrl+Space and select it
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// KT-2424 Invoking completion adds unnecessary FQ name
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
throw IllegalAccessException<caret>() //Press Ctrl+Space and select it
|
||||
}
|
||||
@@ -38,6 +38,10 @@ public class CompletionHandlerTest extends LightCompletionTestCase {
|
||||
doTest(CompletionType.BASIC, 2, "SortedSet", null);
|
||||
}
|
||||
|
||||
public void testDoNotInsertImportForAlreadyImported() {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testNonStandardArray() {
|
||||
doTest(CompletionType.BASIC, 2, "Array", "java.lang.reflect");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user