10 lines
102 B
Kotlin
Vendored
10 lines
102 B
Kotlin
Vendored
fun foo(p: Iterable<D>) {
|
|
p.filter { it.<caret> }
|
|
}
|
|
|
|
interface D {
|
|
fun bar()
|
|
}
|
|
|
|
// EXIST: bar
|