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

8 lines
159 B
Kotlin

fun test() {
class Test{
fun contains(c: Int, vararg a: Int, b: Int = 0): Boolean = true
}
val test = Test()
test.contai<caret>ns(1)
}