Resolve target: value-parameter val c: kotlin.collections.Collection ---------------------------------------------- fun foo(c: Collection): Collection { return c.filter { val v = it.length val v1 = v * v if (v1 > 10) { true } else { /* STATEMENT DELETED: println() */ it[0] == 'a' } } }