Files
kotlin-fork/idea/testData/intentions/operatorToFunction/arrayAccessMultipleIndex.kt.after
T

8 lines
101 B
Plaintext
Vendored

class Bar {
operator fun get(vararg args: Int) {}
}
fun foo(a: Bar, i: Int) {
a.get(i, 1)
}