Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
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
)
}