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