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

7 lines
79 B
Kotlin
Vendored

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