Initial implementation of KT-7688 Intention action to iterate over iterable value

#KT-7688 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-06-26 14:12:43 +02:00
parent 4fc67c27b0
commit 2206459874
17 changed files with 173 additions and 25 deletions
@@ -0,0 +1,9 @@
// WITH_RUNTIME
fun foo() {
for (i in f()) {
<caret>
}
}
fun f(): List<Int> = emptyList()