Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
toInfixCall
/
doubleFunctionCallWithoutParentheses.kt
blob: c567d148666ec59268c02304329a238990ca655a [
file
] [
log
] [
blame
]
interface
X
{
infix fun plus
(
p
:
Int
):
Int
}
fun foo
(
x
:
X
)
{
x
.<
caret
>
plus
(
1
).
minus
(
2
)
}