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
7 lines
99 B
Plaintext
7 lines
99 B
Plaintext
fun foo(x: Int, y: Int, comment: String) {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
foo(24, <spot>42, "Hello"</spot>)
|
|
} |