bdb9f00c75
Related to KT-12165 Supported functions: filterNotNull, filterIsInstance, mapNotNull, mapNotNullTo, mapIndexedNotNull, mapIndexedNotNullTo Also, "Useless cal on not-null" improved a bit
6 lines
135 B
Kotlin
Vendored
6 lines
135 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
|
|
fun String.toNullableInt(): Int? = null
|
|
|
|
val x = listOf("1").<caret>mapNotNull(String::toNullableInt) |