Files
kotlin-fork/idea/idea-completion/testData/handlers/smart/NamedArgument3.kt
T
Valentin Kipyatkov 67cfd9d516 KT-4909 Smart completion does not work for named arguments
KT-7668 Named argument completion does not work after vararg

 #KT-4909 Fixed
 #KT-7668 Fixed
2015-05-16 17:09:51 +03:00

8 lines
138 B
Kotlin
Vendored

fun foo(param1: String, param2: Int, param3: Int) { }
fun bar(pInt: Int) {
foo("", param2 = 1, param3 = <caret>)
}
// ELEMENT: pInt