Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
replaceWithSafeCall
/
assignmentToNullable.kt.after
blob: 93bb70dcf058e7e2f4fce70927c0a779a5a51dcc [
file
] [
log
] [
blame
]
// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
var
i
:
Int
?
=
0
fun foo
(
s
:
String
?)
{
i
=
s
?.
length
}