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