add test which reproduces the problem
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
open class Foo<T>() {
|
||||
/**
|
||||
* Doc for method xyzzy
|
||||
*/
|
||||
open fun xyzzy(): Int = 0
|
||||
}
|
||||
|
||||
open class Bar(): Foo<String>() {
|
||||
override fun xyzzy(): Int = 1
|
||||
}
|
||||
Reference in New Issue
Block a user