KT-19015: Enable multiarg completion for non-first argument

#KT-19015 fixed
This commit is contained in:
Simon Ogorodnik
2017-07-21 03:46:25 +03:00
parent ec5c15f190
commit f079ed949c
3 changed files with 18 additions and 2 deletions
@@ -0,0 +1,10 @@
fun f(a: Long, b: Int, c: String) {}
fun foo() {
val a = 0L
val b = 0
val c = "0"
f(a, <caret>)
}
// EXIST: "b, c"