> Non-final Kotlin classes inheriting Swift/Obj...
# kotlin-native
t
Non-final Kotlin classes inheriting Swift/Objective-C types aren't supported yet, so it is not possible to declare a complex class hierarchy inheriting Swift/Objective-C types.
Any plans to remove this restriction? At least for the classes in the same module?
s
No specific plans yet. Why do you need this?
t
My particular use-case is base
abstract class
that extends
XCTest
on iOS target and overrides `fun setUp()`/`fun tearDown()` to provide common tests setup. Then each test class doesn't need to add setup/teardown methods.
🙏 1