bb808b5620
Moved tests for completion and their test data into module idea-completion
11 lines
168 B
Kotlin
Vendored
11 lines
168 B
Kotlin
Vendored
fun foo(p: (String) -> Unit){}
|
|
fun foo(p: (Int) -> Unit){}
|
|
|
|
fun bar() {
|
|
foo(<caret>)
|
|
}
|
|
|
|
// ABSENT: "{...}"
|
|
// EXIST: "{ String -> ... }"
|
|
// EXIST: "{ Int -> ... }"
|