Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/SuperMethod.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
180 B
Plaintext
Vendored

open class Base {
open fun foo(p: Int){}
}
class Derived : Base() {
override fun foo(p: Int) {
super.foo(<caret>)
}
}
// ELEMENT: foo
// TAIL_TEXT: "(p: Int)"