Fixed smart completion not working when parameter has default value

This commit is contained in:
Valentin Kipyatkov
2014-09-29 18:29:08 +04:00
parent 267aabae12
commit 35ebbab733
3 changed files with 20 additions and 3 deletions
@@ -0,0 +1,7 @@
fun foo(p1: String, p2: String = "") { }
fun bar(s: String) {
foo("", <caret>)
}
// EXIST: s