Fix translation of interface with non-abstract methods in JS BE

Fix additional case of generic interfaces in KT-18187
This commit is contained in:
Alexey Andreev
2017-06-08 12:13:25 +03:00
parent 09e4775a10
commit 4252d9786b
7 changed files with 60 additions and 7 deletions
@@ -20,7 +20,7 @@ fun box(): String {
if (bar1 != "bar:default") return "fail2: $bar1"
val bar2 = A().bar("q")
if (bar2 != "bar:q") return "fail3: $bar1"
if (bar2 != "bar:q") return "fail3: $bar2"
val foo2 = B().foo()
if (foo2 != "foo") return "fail4: $foo2"