Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
invokeFuncUnsafe.kt.after
blob: 2d88d830b0cc90aeb952a391afe711d5ead600d1 [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
fun foo
(
exec
:
(()
->
Unit
)?)
{
if
(
exec
!=
null
)
{
exec
()
}
}