b5dd2cc540
Also changed policy for sorting of smart completion items in basic completion #KT-16800 Fixed #KT-12002 Fixed
10 lines
176 B
Kotlin
Vendored
10 lines
176 B
Kotlin
Vendored
fun foo(first: Int, second: Int, third: String) {
|
|
}
|
|
|
|
fun test(p: Int) = foo(12, <caret>, third = "")
|
|
|
|
// EXIST: p
|
|
// ABSENT: "first ="
|
|
// EXIST: "third ="
|
|
// EXIST: "second ="
|