blob: 6d9d0f5c673c2f8ee3d3ec3441e3a9578b0e58fc [file] [log] [blame]
open class EE() {
open fun f() = 43
}
class FF() : EE() {
override fun f() = <caret>super<EE>.f() - 1
}
/*
super<EE>.f()
super<EE>.f() - 1
*/