Fixed KT-6075 Qualified name inserted when completing class with class object

#KT-6075 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-10-20 20:23:40 +04:00
parent 3a2a7427e7
commit d8dbc46867
5 changed files with 40 additions and 24 deletions
@@ -0,0 +1,5 @@
fun foo() {
KtCla<caret>
}
// ELEMENT: KtClass
@@ -0,0 +1,9 @@
package pack
class KtClass {
fun foo(){}
class object {
fun staticFoo(){}
}
}
@@ -0,0 +1,7 @@
import pack.KtClass
fun foo() {
KtClass<caret>
}
// ELEMENT: KtClass