9 lines
146 B
Kotlin
Vendored
9 lines
146 B
Kotlin
Vendored
open class Foo() {
|
|
/** Doc for method xyzzy */
|
|
open fun xyzzy(): Int = 0
|
|
}
|
|
|
|
open class Bar(): Foo() {
|
|
override fun xyzzy(): Int = 1
|
|
}
|