bb808b5620
Moved tests for completion and their test data into module idea-completion
10 lines
116 B
Kotlin
Vendored
10 lines
116 B
Kotlin
Vendored
trait X {
|
|
fun contains(s: String): Boolean?
|
|
}
|
|
|
|
fun foo(s: String, x: X) {
|
|
if (s in <caret>)
|
|
}
|
|
|
|
// ABSENT: x
|