Sort list of declarations suggested for auto-import by proximity
#KT-2050 Fixed
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "Import" "true"
|
||||
// ERROR: Unresolved reference: Delegates
|
||||
// WITH_RUNTIME
|
||||
package testing
|
||||
|
||||
import some.Delegates
|
||||
|
||||
fun foo() {
|
||||
val d = <caret>Delegates()
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Import" "true"
|
||||
// ERROR: Unresolved reference: Delegates
|
||||
// WITH_RUNTIME
|
||||
package testing
|
||||
|
||||
fun foo() {
|
||||
val d = <caret>Delegates()
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package some
|
||||
|
||||
public class Delegates {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user