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