c1c8660e55
#KT-22304 Fixed
12 lines
214 B
Kotlin
Vendored
12 lines
214 B
Kotlin
Vendored
package test
|
|
|
|
import java.util.concurrent.Callable
|
|
|
|
fun test(): String = ""
|
|
|
|
inline fun String.switchMapOnce(crossinline mapper: (String) -> String): String {
|
|
Callable(::test)
|
|
return { mapper(this) }()
|
|
}
|
|
|