Files
kotlin-fork/idea/testData/completion/smart/BeforeArgumentWithBinaryOperation.kt
T
2013-12-19 16:07:46 +04:00

9 lines
106 B
Kotlin

fun foo(s: String){ }
fun bar(p1: String, p2: Int) {
foo(<caret>1 + 2)
}
// EXIST: p1
// ABSENT: p2