Files
kotlin-fork/idea/testData/completion/smart/VariableAsFunction2.kt.todo
T
Valentin Kipyatkov afa59a616c More tests
2014-10-15 17:30:33 +04:00

14 lines
206 B
Plaintext

fun String.foo(c: Char){}
class C {
fun foo(i: Int){}
fun bar(foo: String.(String) -> Unit, p1: String, p2: Int, p3: Char) {
foo(<caret>)
}
}
// ABSENT: p1
// EXIST: p2
// ABSENT: p3