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

10 lines
169 B
Kotlin

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