b5dd2cc540
Also changed policy for sorting of smart completion items in basic completion #KT-16800 Fixed #KT-12002 Fixed
11 lines
194 B
Kotlin
Vendored
11 lines
194 B
Kotlin
Vendored
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
|