10 lines
161 B
Plaintext
Vendored
10 lines
161 B
Plaintext
Vendored
open class S {
|
|
open fun s(vararg v: Int) {}
|
|
}
|
|
|
|
class D : S() {
|
|
override fun s(vararg v: Int) {
|
|
<selection><caret>super.s(*v)</selection>
|
|
}
|
|
}
|