Files
kotlin/idea/testData/quickfix/createFromUsage/createVariable/parameter/namedArgInFunctionCall.kt.after

9 lines
104 B
Plaintext
Vendored

// "Create parameter 's'" "true"
fun foo(n: Int, s: String) {
}
fun bar() {
foo(n = 1, s = "2")
}