Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
replaceWithSafeCallForScopeFunction
/
applyWithThisAndArrow.kt
blob: fdc11aa778914fa27fbeb260c74c1f7d7052adec [
file
] [
log
] [
blame
]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
fun foo
(
a
:
String
?)
{
a
.
apply
{
->
this
<caret>
.
length
}
}