Files
kotlin-fork/idea/testData/intentions/iterateExpression/functionCall.kt.after
T
2015-06-29 19:31:21 +03:00

9 lines
107 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
for (i in f()) {
<caret>
}
}
fun f(): List<Int> = emptyList()