11 lines
209 B
Plaintext
Vendored
11 lines
209 B
Plaintext
Vendored
// 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>
|
|
}
|
|
}
|