[ObjCExport] Constructors fixes, cloneables handling, annotations
This commit is contained in:
committed by
Space Team
parent
545753ff4c
commit
0ec9f2a8b9
+13
@@ -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() {}
|
||||
}
|
||||
Reference in New Issue
Block a user