8 lines
150 B
Plaintext
Vendored
8 lines
150 B
Plaintext
Vendored
fun test() {
|
|
class Test{
|
|
operator fun get(a: Int, vararg b: Int, c: Int = 0) : Int = 0
|
|
}
|
|
val test = Test()
|
|
test[1, 3, 4, 5]
|
|
}
|