Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
replaceWithSafeCall
/
hasElvis.kt.after
blob: 7584c83c274ee9e5febc2ec394791c6b7bcc6c03 [
file
]
// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun main
()
{
var
a
=
foo
()?.
length
?:
0
}
fun foo
():
String
?
{
return
""
}