Fix samples for 'iter' postfix template

#KT-14727 Fixed
This commit is contained in:
Denis Zharkov
2017-03-10 18:27:06 +03:00
parent bd88919411
commit 78ffe47bf8
@@ -1,4 +1,5 @@
fun bar() = 1
fun foo() {
val bar = bar()
fun foo(list: List<String>) {
for (s in list) {
}
}