Files
kotlin-fork/idea/testData/intentions/toInfixCall/multipleArguments.kt
T
2015-05-13 16:13:13 +02:00

9 lines
114 B
Kotlin
Vendored

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