[ObjCExport] Fix property setter

KT-64953: Required part for enum translation
This commit is contained in:
eugene.levenetc
2024-02-13 16:23:57 +01:00
committed by Space Team
parent 576851e514
commit 8f2fc3d1e2
21 changed files with 306 additions and 83 deletions
@@ -0,0 +1,7 @@
class Foo {
fun alloc() {}
fun copy(): Foo = Foo()
fun mutableCopy(): Foo = Foo()
fun new(): Foo = Foo()
fun init(): Foo = Foo()
}