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