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

11 lines
188 B
Kotlin

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