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