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

8 lines
91 B
Plaintext
Vendored

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