// See KT-6271 fun foo() { fun fact(n: Int) = { if (n > 0) { fact(n - 1) * n } else { 1 } } }