Files
kotlin-fork/idea/testData/completion/basic/common/namedParameters/OnlyNamedParameters.kt
T
2014-08-07 21:55:15 +04:00

10 lines
166 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