fda8d7de8b
Some quickfixes are relying on diagnostics, that won't be reported with new language features enabled. `MixedNamedArgumentsInTheirOwnPosition` `AllowBreakAndContinueInsideWhen`
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// LANGUAGE_VERSION: 1.3
|
|
|
|
fun foo(s: String, b: Boolean){}
|
|
|
|
fun bar() {
|
|
foo(<caret>"", true)
|
|
} |