Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/SuperMethod.kt
T
Valentin Kipyatkov b73c574d19 Correct completion after "super."
#KT-8406 Fixed
2015-11-05 17:47:54 +03:00

11 lines
150 B
Kotlin
Vendored

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