6 lines
115 B
Plaintext
Vendored
6 lines
115 B
Plaintext
Vendored
// "Wrap with '?.let { ... }' call" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(exec: (() -> Unit)?) {
|
|
exec?.let { it() }
|
|
} |