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

18 lines
415 B
Kotlin
Vendored

open class B {
open fun foo() {}
open fun bar() {}
}
class C : B() {
override fun foo() {
super.<caret>
}
}
// EXIST: { lookupString: "foo", itemText: "foo", tailText: "()", typeText: "Unit", attributes: "bold" }
// EXIST: { lookupString: "bar", itemText: "bar", tailText: "()", typeText: "Unit", attributes: "bold" }
// EXIST: equals
// EXIST: hashCode
// EXIST: toString
// NOTHING_ELSE