6 lines
132 B
Kotlin
Vendored
6 lines
132 B
Kotlin
Vendored
// "Wrap with '?.let { ... }' call" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun f(s: String, action: (String.() -> Unit)?) {
|
|
s.action<caret>()
|
|
} |