mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
10 lines
192 B
Plaintext
Vendored
10 lines
192 B
Plaintext
Vendored
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>
|
|
}
|
|
}
|