KT-2752: fix translation of call to internal function from subclass

This commit is contained in:
Alexey Andreev
2016-10-07 15:31:28 +03:00
parent c814a9d1d2
commit 322f6fe7ac
4 changed files with 33 additions and 3 deletions
@@ -0,0 +1,9 @@
abstract class A {
final internal fun foo() = "OK"
}
class B : A() {
fun bar() = foo()
}
fun box() = B().bar()