bb808b5620
Moved tests for completion and their test data into module idea-completion
14 lines
206 B
Plaintext
Vendored
14 lines
206 B
Plaintext
Vendored
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
|