bb808b5620
Moved tests for completion and their test data into module idea-completion
14 lines
166 B
Kotlin
Vendored
14 lines
166 B
Kotlin
Vendored
trait X
|
|
trait Y : X
|
|
trait Z
|
|
|
|
fun X.contains(s: String): Boolean
|
|
|
|
fun foo(s: String, x: X, y: Y, z: Z) {
|
|
if (s in <caret>)
|
|
}
|
|
|
|
// EXIST: x
|
|
// EXIST: y
|
|
// ABSENT: z
|