7ea1700b78
#KT-14578 Fixed #KT-14395 Fixed
8 lines
125 B
Kotlin
Vendored
8 lines
125 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
interface CD
|
|
|
|
fun <D : CD> D.foo(): D? = null
|
|
|
|
fun test(x: List<CD>) {
|
|
x.mapNotNull <caret>{ it.foo() }
|
|
} |