Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
replaceWithSafeCallForScopeFunction
/
assignment.kt.after
blob: 4c5ac83fe378459b53d68e027761944001e98d34 [
file
]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
var
i
=
0
fun foo
(
a
:
String
?)
{
i
=
a
?.
run
{
length
}
?:
<caret>
}