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

6 lines
116 B
Kotlin

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