blob: b276765f1dbacf8ce61d3f0e32e929d1686dc3fd [file] [log] [blame]
// FIR_IDENTICAL
open class A {
open fun foo(`object` : Any): Int = 0
}
class C : A() {
override fun foo(`object`: Any): Int {
<selection><caret>return super.foo(`object`)</selection>
}
}