Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
LambdaInCurrentStatement.kt
blob: 71fe0f65d01880c389b12931bd39cbb96b0ab0f4 [
file
]
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'
}
}
}