6532916dd2
#KT-24492 Fixed
8 lines
141 B
Kotlin
Vendored
8 lines
141 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// FIX: Change call to 'map'
|
|
|
|
fun foo(c: Collection<String>) {
|
|
c.<caret>mapNotNull {
|
|
return@mapNotNull ""
|
|
}
|
|
} |