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