blob: cde4011712c0cab33be498f487cf970b982f223e [file] [log] [blame]
// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
fun foo(exec: (() -> Unit)?) {
exec?.let { it() }
}