Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
replaceWithSafeCall
/
assignmentFromImplicitParameter.kt.after
blob: c5f7291f486b59040fe2da3e321dd5401d3958d0 [
file
] [
log
] [
blame
]
// "Replace with safe (this?.) call" "true"
// WITH_RUNTIME
var
i
=
0
fun foo
(
a
:
String
?)
{
a
.
run
{
i
=
this
?.
length
?:
<caret>
}
}