7 lines
115 B
Plaintext
Vendored
7 lines
115 B
Plaintext
Vendored
// "Surround with null check" "true"
|
|
|
|
fun foo(exec: (() -> Unit)?) {
|
|
if (exec != null) {
|
|
exec()
|
|
}
|
|
} |