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

6 lines
117 B
Kotlin

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