[ObjCExport] Add inner classes translation

KT-66339
This commit is contained in:
eugene.levenetc
2024-03-07 15:08:21 +01:00
committed by Space Team
parent 5fee662223
commit f7f779df53
20 changed files with 497 additions and 76 deletions
@@ -0,0 +1,10 @@
class Foo {
inner class Inner {
val Foo.propVal: Boolean
get() = false
fun String.foo() = 42
var Foo.propSet: Int
get() = 42
set(value) {}
}
}