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