Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
replaceInfixOrOperatorCall
/
assignmentCallExpression.kt.after
blob: 233525ac994f50c4c9bc68f110acc3788b4f2b89 [
file
]
// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun bar
()
{
val fff
:
(()
->
Int
)?
=
{
1
}
var
i
:
Int
=
1
i
=
fff
?.
invoke
()
?:
<caret>
}