Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
replaceInfixOrOperatorCall
/
hasElvis.kt.after
blob: a22be396f5dbe0d2cb52ff6c40155649dfc0b1de [
file
]
// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun foo
(
list
:
List
<
String
>?)
{
var
s
=
""
s
=
list
?.
get
(
0
)
?:
""
}