Files
kotlin-fork/idea/testData/quickfix/checkArguments/addNameToArgument/mixedNamedAndPositionalArgumentsUsedPositional.kt
T
Pavel Kirpichenkov fda8d7de8b [IDEA-TESTS] Specify language version in feature-dependent tests
Some quickfixes are relying on diagnostics, that won't be reported
with new language features enabled.
`MixedNamedArgumentsInTheirOwnPosition`
`AllowBreakAndContinueInsideWhen`
2020-02-17 10:56:46 +03:00

8 lines
158 B
Kotlin
Vendored

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