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