Files
kotlin-fork/idea/testData/completion/basic/common/namedParameters/OnlyNamedParameters.kt
T
2014-09-03 13:59:31 +04:00

10 lines
190 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 ="
// NUMBER: 1