Fixed propagation for non-abstract methods inherited from traits.

This commit is contained in:
Evgeny Gerashchenko
2013-04-11 20:47:10 +04:00
parent 068b4a4628
commit f713b03abc
10 changed files with 116 additions and 4 deletions
@@ -0,0 +1,14 @@
package test
trait A {
fun foo() {}
fun bar() {}
}
open class B : A {
}
class C : B() {
override fun bar() {}
}