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

8 lines
90 B
Kotlin
Vendored

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