Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/LambdaInCurrentStatement.kt
T
Valentin Kipyatkov 4ca8a3400e Added a test
2014-11-24 20:11:26 +03:00

13 lines
260 B
Kotlin
Vendored

fun foo(c: Collection<String>): Collection<String> {
return <caret>c.filter {
val v = it.length
val v1 = v * v
if (v1 > 10) {
true
}
else {
println()
it[0] == 'a'
}
}
}