Files
kotlin-fork/idea/testData/intentions/addNameToArgument/simple.kt
T
2015-06-29 19:29:26 +03:00

7 lines
116 B
Kotlin
Vendored

// INTENTION_TEXT: "Add 'b =' to argument"
fun foo(s: String, b: Boolean){}
fun bar() {
foo("", true<caret>)
}