8 lines
161 B
Kotlin
Vendored
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)
|
|
}
|