blob: f56fa8ffcf26e751d675f16ae23f451da4619357 [file] [log] [blame]
// WITH_RUNTIME
fun foo(c : Collection<String>){
val predicate: (String) -> Boolean = { it; false }
c.filter(predicate)
}