Files
kotlin-fork/idea/testData/intentions/toInfixCall/doubleFunctionCall.kt.after
T

8 lines
91 B
Plaintext
Vendored

interface X {
infix fun times(p: Int): Int
}
fun foo(x: X) {
(x times 1).div(2)
}