Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
wrapWithSafeLetCall
/
invokeFuncUnsafe.kt.after
blob: cde4011712c0cab33be498f487cf970b982f223e [
file
] [
log
] [
blame
]
// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
fun foo
(
exec
:
(()
->
Unit
)?)
{
exec
?.
let
{
it
()
}
}