Files
kotlin-fork/idea/testData/quickfix/checkArguments/beforeMixedNamedAndPositionalArgumentsUsedNamed.kt
T
2013-05-17 13:01:29 +04:00

6 lines
120 B
Kotlin

// "Add name to argument: 'b = "FOO"'" "true"
fun f(a: String, b: String) {}
fun g() {
f(a = "BAR", <caret>"FOO")
}