[ObjCExport] Fix extensions interface name

KT-66315
This commit is contained in:
eugene.levenetc
2024-03-04 18:09:20 +01:00
committed by Space Team
parent 2a445a04b0
commit 5c64832c0f
7 changed files with 70 additions and 43 deletions
@@ -1,9 +1,16 @@
fun topLevelFunA() {}
fun topLevelFunB() {}
fun Foo.extensionFunA() {}
fun Foo.extensionFunB() {}
fun ClazzA.extensionFunA1() {}
fun ClazzA.extensionFunA2() {}
class Foo {
fun ClazzB.extensionFunB1() {}
fun ClazzB.extensionFunB2() {}
class ClazzA {
fun memberFun() {}
}
class ClazzB {
fun memberFun() {}
}