Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
FunctionLiteral.kt.after
blob: f56fa8ffcf26e751d675f16ae23f451da4619357 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
(
c
:
Collection
<
String
>){
val predicate
:
(
String
)
->
Boolean
=
{
it
;
false
}
c
.
filter
(
predicate
)
}