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

8 lines
97 B
Kotlin
Vendored

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