bb808b5620
Moved tests for completion and their test data into module idea-completion
15 lines
155 B
Kotlin
Vendored
15 lines
155 B
Kotlin
Vendored
trait X
|
|
trait Y
|
|
|
|
fun X.iterator(): Y
|
|
fun Y.next(): Int
|
|
fun Y.hasNext(): Boolean
|
|
|
|
|
|
fun foo(x: X, y: Y) {
|
|
for (i in <caret>)
|
|
}
|
|
|
|
// EXIST: x
|
|
// ABSENT: y
|