Supported forEach

This commit is contained in:
Valentin Kipyatkov
2016-05-11 22:43:00 +03:00
parent 394cce8e10
commit f28dca1fd5
10 changed files with 104 additions and 5 deletions
@@ -0,0 +1,7 @@
// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<String>) {
<caret>for (s in list) {
println(s)
}
}