Files
kotlin-fork/idea/testData/completion/handlers/smart/Comma10.kt
T
Valentin Kipyatkov 67df7de7b1 Fixed KT-5110 Smart completion: do not generate comma if next argument has default value
Fixed KT-5109 Smart completion: do not insert comma if next argument is vararg

 #KT-5110 Fixed
 #KT-5109 Fixed
2014-07-28 18:52:57 +04:00

8 lines
94 B
Kotlin

fun foo(p1: String, p2: String = ""){}
fun bar(p: String){
foo(<caret>)
}
// ELEMENT: p