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