b5dd2cc540
Also changed policy for sorting of smart completion items in basic completion #KT-16800 Fixed #KT-12002 Fixed
12 lines
265 B
Kotlin
Vendored
12 lines
265 B
Kotlin
Vendored
fun foo(paramFirst: String, paramSecond: String, paramThird: String, paramFourth: String) {}
|
|
|
|
fun test() {
|
|
foo("str", paramThird = "test", param<caret>)
|
|
}
|
|
|
|
// ABSENT: "paramFirst ="
|
|
// EXIST: "paramSecond ="
|
|
// ABSENT: "paramThird ="
|
|
// EXIST: "paramFourth ="
|
|
|