6 lines
110 B
Kotlin
Vendored
6 lines
110 B
Kotlin
Vendored
// "Wrap with '?.let { ... }' call" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(exec: (() -> Unit)?) {
|
|
<caret>exec()
|
|
} |