diff --git a/idea/resources/postfixTemplates/KtForEachPostfixTemplate/after.kt.template b/idea/resources/postfixTemplates/KtForEachPostfixTemplate/after.kt.template index 92982c00af0..8b7cfc2f76a 100644 --- a/idea/resources/postfixTemplates/KtForEachPostfixTemplate/after.kt.template +++ b/idea/resources/postfixTemplates/KtForEachPostfixTemplate/after.kt.template @@ -1,4 +1,5 @@ -fun bar() = 1 -fun foo() { - val bar = bar() +fun foo(list: List) { + for (s in list) { + + } }