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

6 lines
124 B
Kotlin

// "Add name to argument..." "true"
fun f(a: Int, b: String = "b", c: String = "c") {}
fun g() {
f(a = 10, b = "FOO")
}