304c826b47
#KT-6128 Fixed
10 lines
98 B
Kotlin
10 lines
98 B
Kotlin
fun foo(p: Iterable<D>) {
|
|
p.filter { it.<caret> }
|
|
}
|
|
|
|
trait D {
|
|
fun bar()
|
|
}
|
|
|
|
// EXIST: bar
|