KT-2752: fix translation of call to internal function from subclass
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
abstract class A {
|
||||
final internal fun foo() = "OK"
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
fun bar() = foo()
|
||||
}
|
||||
|
||||
fun box() = B().bar()
|
||||
Reference in New Issue
Block a user