9 lines
178 B
Kotlin
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)
|
|
}
|