[K/N] Implement lightweight tests for ObjC header generation

This commit is contained in:
Sebastian Sellmair
2023-11-21 13:59:09 +01:00
committed by Space Team
parent 06811dfc2f
commit ddd97e84b9
41 changed files with 1074 additions and 2 deletions
@@ -0,0 +1,11 @@
interface Foo {
val someProperty: Int
fun someMethod(): Any
fun someMethodWithCovariantOverwrite(): Any
}
class Bar : Foo {
override val someProperty: Int = 42
override fun someMethod(): Any = ""
override fun someMethodWithCovariantOverwrite(): String = ""
}