Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceGetIntention/acceptableVararg.kt.after
T
2015-05-14 01:10:05 +03:00

8 lines
141 B
Plaintext

fun test() {
class Test{
fun get(a: Int, vararg b: Int, c: Int = 0) : Int = 0
}
val test = Test()
test[1, 3, 4, 5]
}