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