Files
kotlin-fork/idea/idea-completion/testData/smart/multipleArgsItem/10.kt
T
Valentin Kipyatkov bb808b5620 Created module idea-test-framework and moved classes needed for idea tests there
Moved tests for completion and their test data into module idea-completion
2015-04-14 18:53:01 +03:00

12 lines
164 B
Kotlin
Vendored

fun f(p1: String, p2: Int, p3: Any){}
class C(val p1: String) {
val p3: String = ""
fun foo(p2: Int) {
f(<caret>)
}
}
// EXIST: "p1, p2, p3"