Files
kotlin-fork/idea/testData/completion/handlers/smart/ForLoopRange.kt
T
2015-02-10 16:13:50 +03:00

14 lines
138 B
Kotlin

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