Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceSingleLineLetIntention
/
sameLets.kt.after
blob: 05cd5886c4c77fdd9d818119ae576382ddf21b09 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: true
fun foo
()
{
val foo
:
String
?
=
null
foo
?.
toString
()?.
to
(
""
)?.
let
{
it
.
to
(
""
)
}
}