Smart completion includes object's from scope before searching for inheritors

#KT-6123 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-11-26 21:42:15 +03:00
parent ed9dba2071
commit 85825e0ab1
8 changed files with 44 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
trait I
object O : I
fun foo(): I = <caret>
// EXIST: { lookupString: "O", itemText: "O", tailText: " (<root>)" }
// EXIST: foo
// EXIST: object
// NUMBER: 3