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

12 lines
175 B
Kotlin
Vendored

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