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

18 lines
384 B
Kotlin
Vendored

interface I {
fun abstractFun()
val abstractVal: Int
fun nonAbstractFun(){}
}
class A : I {
override fun abstractFun() {
super.<caret>
}
}
// ABSENT: abstractFun
// ABSENT: abstractVal
// EXIST: { itemText: "nonAbstractFun", attributes: "bold" }
// EXIST: { itemText: "equals", attributes: "bold" }
// EXIST: { itemText: "hashCode", attributes: "bold" }