Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/LambdaInCurrentStatement.dump
T

16 lines
417 B
Plaintext
Vendored

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