955bfd6e7b
This commit also refactors relevant intentions & inspections, like "add name to argument", "add names to call arguments", "unnamed boolean literal argument" #KT-30622 Fixed
5 lines
97 B
Kotlin
Vendored
5 lines
97 B
Kotlin
Vendored
fun foo(first: Int, second: Boolean, last: String) {}
|
|
|
|
fun test() {
|
|
foo(1, <caret>true, "")
|
|
} |