[K/N] Implement lightweight tests for ObjC header generation
This commit is contained in:
committed by
Space Team
parent
06811dfc2f
commit
ddd97e84b9
Vendored
+11
@@ -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 = ""
|
||||
}
|
||||
Reference in New Issue
Block a user