Files
kotlin-fork/idea/testData/intentions/addNameToArgument/notLast.kt
T
Pavel Kirpichenkov fda8d7de8b [IDEA-TESTS] Specify language version in feature-dependent tests
Some quickfixes are relying on diagnostics, that won't be reported
with new language features enabled.
`MixedNamedArgumentsInTheirOwnPosition`
`AllowBreakAndContinueInsideWhen`
2020-02-17 10:56:46 +03:00

8 lines
122 B
Kotlin
Vendored

// IS_APPLICABLE: false
// LANGUAGE_VERSION: 1.3
fun foo(s: String, b: Boolean){}
fun bar() {
foo(<caret>"", true)
}