KT-3853 ISE on resolving function implementation from trait from Java

The fix is simple and dirty, because the related code will be removed soon anyways. Fix is necessary for compiling Kara.

 #KT-3853 fixed
This commit is contained in:
Evgeny Gerashchenko
2013-08-08 21:33:24 +04:00
parent 6bb1474ee8
commit 3f7627120b
6 changed files with 38 additions and 0 deletions
@@ -0,0 +1,9 @@
package test
trait Trait {
open fun f(a: String) {
}
}
open class Class : Trait {
}