Files
kotlin-fork/idea/testData/kdoc/finder/Overridden.kt
T
Dmitry Jemerov 1684248e97 Fix retrieving documentation for overridden methods.
(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.)
2015-02-27 20:10:37 +01:00

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
}