add test which reproduces the problem

This commit is contained in:
Dmitry Jemerov
2015-02-27 20:55:34 +01:00
parent 1684248e97
commit 6e29829891
2 changed files with 19 additions and 0 deletions
@@ -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
}