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