67cfd9d516
KT-7668 Named argument completion does not work after vararg #KT-4909 Fixed #KT-7668 Fixed
8 lines
162 B
Kotlin
Vendored
8 lines
162 B
Kotlin
Vendored
fun foo(vararg strings: String, option: String = ""){ }
|
|
|
|
fun bar(s: String){
|
|
foo("", "", <caret>)
|
|
}
|
|
|
|
// EXIST: { lookupString:"option", itemText:"option =" }
|