bb808b5620
Moved tests for completion and their test data into module idea-completion
14 lines
198 B
Kotlin
Vendored
14 lines
198 B
Kotlin
Vendored
fun String.foo(c: Char){}
|
|
|
|
class C {
|
|
fun foo(i: Int){}
|
|
|
|
fun bar(foo: (String) -> Unit, p1: String, p2: Int, p3: Char) {
|
|
foo(<caret>)
|
|
}
|
|
}
|
|
|
|
// EXIST: p1
|
|
// EXIST: p2
|
|
// ABSENT: p3
|