[ObjCType] Add basic implementation of base method, fix tests

KT-65687
This commit is contained in:
eugene.levenetc
2024-02-22 15:28:22 +01:00
committed by Space Team
parent 1c2570ed7e
commit 078f0ff6e1
18 changed files with 471 additions and 14 deletions
@@ -0,0 +1,7 @@
private interface PrivateA {
fun foo()
}
class PublicB : PrivateA {
override fun foo() = Unit
}