Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/SuperMethod2.kt.after
T
Valentin Kipyatkov e33e1ef8d7 KT-8968 Special completion after "super."
#KT-8968 Fixed
2015-11-05 17:47:55 +03:00

12 lines
222 B
Plaintext
Vendored

open class Base {
open fun foo(p1: Int, vararg p2: Int){}
}
class Derived : Base() {
override fun foo(p1: Int, vararg p2: Int) {
super.foo(p1, *p2)<caret>
}
}
// ELEMENT: foo
// TAIL_TEXT: "(p1, *p2)"