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