Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
wrapWithSafeLetCall
/
objectQualifier.kt.after
blob: 2ea84281365a5dc1aa7b1f41e0643c03964bdb65 [
file
] [
log
] [
blame
]
// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
object
Obj
{
fun foo
(
x
:
Int
)
=
x
}
val arg
:
Int
?
=
null
val argFoo
=
arg
?.
let
{
Obj
.
foo
(
it
)
}