1684248e97
(The test doesn't actually reproduce the problem because it can't be done in a single-file setup, but it verifies that the basic functionality continues to work.)
11 lines
158 B
Kotlin
11 lines
158 B
Kotlin
open class Foo() {
|
|
/**
|
|
* Doc for method xyzzy
|
|
*/
|
|
open fun xyzzy(): Int = 0
|
|
}
|
|
|
|
open class Bar(): Foo() {
|
|
override fun xyzzy(): Int = 1
|
|
}
|