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