Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/generic3.kt
T
Toshiaki Kameyama 7ea1700b78 Convert lambda to reference: support generic function call
#KT-14578 Fixed
#KT-14395 Fixed
2020-06-26 20:30:39 +03:00

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() }
}