Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceInvoke/varargInvoke.kt.after
T
2015-12-17 11:11:27 +03:00

8 lines
139 B
Plaintext
Vendored

fun test() {
class Test {
operator fun invoke(a: Int, vararg b: String) {}
}
val test = Test()
test(1, "a", "b")
}