Smart completion: 2 lookup strings for static member items

This commit is contained in:
Valentin Kipyatkov
2014-10-28 20:33:33 +03:00
parent 2b33501471
commit e256d14075
4 changed files with 26 additions and 1 deletions
@@ -0,0 +1,15 @@
package sample
class Kool {
class object {
val foo: Kool = Kool()
fun bar(): Kool = Kool()
}
}
fun foo(){
val k : Kool = K<caret>
}
// EXIST: foo
// EXIST: bar