blob: 8b889210fe66f657fb937e5a881b47220ce58d9d [file] [log] [blame]
open class Base {
open fun foo(p: Int){}
}
class Derived : Base() {
override fun foo(p: Int) {
super.<caret>
}
}
// ELEMENT: foo
// TAIL_TEXT: "(p: Int)"