Files
kotlin-fork/idea/testData/intentions/replaceWithInfixFunctionCall/multipleArguments.kt
T

9 lines
110 B
Kotlin

// IS_APPLICABLE: false
trait Foo {
fun foo(a: Int, b: Int)
}
fun foo(x: Foo) {
x.<caret>foo(1, 2)
}