bb808b5620
Moved tests for completion and their test data into module idea-completion
10 lines
155 B
Kotlin
Vendored
10 lines
155 B
Kotlin
Vendored
fun foo(p: String?){}
|
|
fun foo(p: Char){}
|
|
|
|
fun bar(p1: String?, p2: String?, p3: Char) {
|
|
foo(p1 ?: <caret>
|
|
}
|
|
|
|
// EXIST: { itemText:"p2" }
|
|
// ABSENT: p3
|