Files
kotlin-fork/idea/testData/intentions/swapBinaryExpression/infixFunction.kt
T

8 lines
133 B
Kotlin
Vendored

// IS_APPLICABLE: false
class Foo() {
infix fun cat(x: Int): Int {return x}
}
fun main() {
val catter = Foo() c<caret>at 5
}