KT-13728 Implicitly imported functions should be above in completion then non-imported

#KT-13728 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-09-27 21:13:13 +03:00
parent e8f4c65455
commit 7263d0a056
5 changed files with 19 additions and 0 deletions
@@ -0,0 +1,3 @@
package other
class TODO
@@ -0,0 +1,3 @@
package kotlin
public inline fun TODO(): Nothing = throw NotImplementedError()
@@ -0,0 +1,5 @@
fun foo(): Any? = TODO<caret>
// WITH_ORDER
// EXIST: { itemText: "TODO", tailText:"() (kotlin)" }
// EXIST: { itemText: "TODO", tailText:" (other)" }