Files
kotlin-fork/idea/testData/intentions/removeArgumentName/namedArgumentBefore.kt
T
2020-01-21 11:43:37 +03:00

7 lines
179 B
Kotlin
Vendored

// COMPILER_ARGUMENTS: -XXLanguage:-MixedNamedArgumentsInTheirOwnPosition
// IS_APPLICABLE: false
fun foo(s: String, b: Boolean) {}
fun bar() {
foo(s = "", <caret>b = true)
}