Files
kotlin-fork/idea/testData/completion/basic/common/namedParameters/NotOnlyNamedParameters.kt
T

10 lines
164 B
Kotlin

fun foo(first: Int, second: Int, third: String) {
}
fun test(p: Int) = foo(12, <caret>, third = "")
// EXIST: p
// ABSENT: first
// EXIST: third
// EXIST: second