Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
replaceWithSafeCallForScopeFunction
/
lineBreak.kt.after
blob: cf0b5e057bf50d5bb4a47dfb9bf7933ca5aa949b [
file
]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
fun foo
(
a
:
String
?)
{
val b
=
a
?.
let
{
it
.
length
}
}