Files
kotlin-fork/idea/testData/inspectionsLocal/conventionNameCalls/replaceGetOrSet/acceptableVararg.kt
T
2017-12-26 18:39:47 +03:00

8 lines
161 B
Kotlin
Vendored

fun test() {
class Test{
operator fun get(a: Int, vararg b: Int, c: Int = 0) : Int = 0
}
val test = Test()
test.g<caret>et(1, 3, 4, 5)
}