7ea1700b78
#KT-14578 Fixed #KT-14395 Fixed
6 lines
124 B
Kotlin
Vendored
6 lines
124 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun <T> foo(i: Int): T? = null
|
|
|
|
fun test(list: List<Int>) {
|
|
list.mapNotNull <caret>{ foo<String>(it) }
|
|
} |