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