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

8 lines
99 B
Kotlin
Vendored

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