Files
kotlin-fork/idea/testData/intentions/attributeCallReplacements/replaceGetIntention/unacceptableVararg.kt
T

9 lines
178 B
Kotlin

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