[ObjCExport] Constructors fixes, cloneables handling, annotations

This commit is contained in:
eugene.levenetc
2024-02-12 13:30:07 +00:00
committed by Space Team
parent 545753ff4c
commit 0ec9f2a8b9
24 changed files with 498 additions and 46 deletions
@@ -0,0 +1,13 @@
abstract class A {
abstract fun a0()
abstract fun a1(i: Int)
abstract fun a2(b: Boolean, a: Any)
}
class B: A() {
override fun a0() {}
override fun a1(i: Int) {}
override fun a2(b: Boolean, a: Any) {}
fun b0() {}
}