Smart completion: bugfix - no function reference after dot

This commit is contained in:
Valentin Kipyatkov
2014-04-15 13:04:21 +04:00
parent 5bff98c164
commit 1ba4c656a5
3 changed files with 19 additions and 1 deletions
@@ -0,0 +1,11 @@
class X{
fun foo(p: () -> Unit){}
fun bar() {
foo(this.<caret>)
}
fun f(){}
}
// NUMBER: 0