fda8d7de8b
Some quickfixes are relying on diagnostics, that won't be reported with new language features enabled. `MixedNamedArgumentsInTheirOwnPosition` `AllowBreakAndContinueInsideWhen`
8 lines
153 B
Kotlin
Vendored
8 lines
153 B
Kotlin
Vendored
// "Add name to argument..." "true"
|
|
// LANGUAGE_VERSION: 1.3
|
|
|
|
fun f(a: Int, b: String = "b", c: String = "c") {}
|
|
|
|
fun g() {
|
|
f(a = 10, <caret>"FOO")
|
|
} |