bb808b5620
Moved tests for completion and their test data into module idea-completion
13 lines
169 B
Kotlin
Vendored
13 lines
169 B
Kotlin
Vendored
fun foo(s: String){}
|
|
fun foo(c: Char){}
|
|
|
|
val xxx: XXX
|
|
|
|
fun bar(b: Boolean, s: String, c: Char){
|
|
foo(if (b) xxx else <caret>)
|
|
}
|
|
|
|
// EXIST: s
|
|
// EXIST: c
|
|
// ABSENT: b
|